Skip to main content

How to Use MongoDb Nativ Query With Model in NodeJS | node-js-tutorial.blogspot.com

How to Use MongoDb Nativ Query With Model in NodeJS | node-js-tutorial.blogspot.com


In this artical, you have learn how to use mongo native query with node model.

let understand some code.

Following code use for conver Sting To Object ID.

Declare in top of Your code.

 var ObjectId = require('mongodb').ObjectID;  

Nativ query Understand Object Id not String.

 let userId = '123232323232'; // ID of User.  
 Your_Model.native(function (err, modelObj) {  
      modelObj.update({ "_id": new ObjectId(userId) },  
           { $push: { <feild>: { <feild>: <value> } } },  
                function (err, res) {  
                     if (err) {  
                          // Print Error Log  
                          console.log(err);  
                     } else {  
                          // Print Success Log  
                          console.log(res.result);  
                     }  
      });  
 }); // End Nativ  


Here Query is for push Record in Array.

Thanks.

Comments

  1. good code. thanks very helpful for me.
    it Solve my big issue.

    ReplyDelete
  2. Thanks for posting such a informative content by your blog. keep sharing more post.
    Node JS Training
    Node JS Online Training

    ReplyDelete
  3. Best article, very useful and explanation. Your post is extremely incredible. Thank you very much for the new information.
    Node Js Online Training in Hyderabad
    Best Node Js Online Training in Hyderabad
    Node Js Training
    Node Js Online Training in Ameerpet

    ReplyDelete
  4. Good post and informative. Thank you very much for sharing this good article, it was so good to read and useful to improve my knowledge as updated, keep blogging.
    Node JS Online training
    Node JS training in Hyderabad


    ReplyDelete
  5. wonderful article. Very interesting to read this article.I would like to thank you for the efforts you had made for writing this awesome article. This is good information and really helpful for the people who need information about this. I have learned a lot from this
    oracle training in chennai

    oracle training institute in chennai

    oracle training in bangalore

    oracle training in hyderabad

    oracle training

    oracle online training

    hadoop training in chennai

    hadoop training in bangalore


    ReplyDelete

Post a Comment

Popular posts from this blog

NodeJs - Socket.IO Set Ping Timeout & Ping Interval | node-js-tutorial.blogspot.in

How to Socket.io Specifying Heartbeat Here we Learn Method of Set Ping Timeout & ping interval. There Are Several Way to Set Ping interval & Ping Time out. Please Remember Some note : ping interval is alway small then ping Timeout. Always Set Same ping timeout & ping Interval for both side. (Client side  & Server Side) When You Develop any Client Server Application. Following Are some Pattern Which most Case Peopele use. 1) Type One  var app = require('express')(); var http = require('http').Server(app); var io = require('socket.io')(http, { 'pingInterval': 2000, 'pingTimeout': 5000 }); 2) Type Two For package dependency versions: "express": "^4.12.3", "socket.io": "1.0" ex : var app = express(); var server = require('http').createServer(app); var io = require('socket.io')(server); io.set('heartbeat timeout'

Soket.io Use Of Ping Pong Events | node-js-tutorial.blogspot.in

When we Create Client Server Application, Some time we Need To Check out Live Connectivity between Client & Server. Let's we Understand by Example, Server Code. const fs = require('fs'); const http = require('http'); const path = require('path'); const SocketIOServer = require('socket.io'); const app = new http.Server(); app.on('request', (req, res) => { const index = path.join(__dirname, 'public', 'index.html') fs.readFile(index, function (err, data) { if (err) { res.writeHead(500); return res.end('Error loading index.html'); } res.writeHead(200); res.end(data); }); }); app.listen(3000, 'localhost'); const io = new SocketIOServer(app); // could also use "connection" io.on('connect', function (socket) { console.log(`${socket.id} "connect"`); socket.on(' ping

How To Get Socket(socket.io) Disconnected Reason - Node js | JavaScript

we Define Event handler for Handel "Disconnect" Event. Just Get Reason we use Following Code. socket.on('disconnect', function(reason){    console.log('Player Disconnected Due To Reason :'+reason); }); Start listening for server-sent events from node with the specified eventIdentity. Will trigger the provided callback function when a matching event is received. Here 'disconnect' Event Occure when some socket is disconnected. There Are Following Type of Reason Here we Get. 1) Transport Close 2) Ping Timeout Transport Close : When You Close your Application/Game/Webgl, You May Get this Reason. Ping Timeout : When you ping time is Expire ,  You May Get this Reason. It might be better to set different pingTimeouts on the server and on client. On server, pingTimeout (+pingInterval) means the idle time the server will keep the socket up. This can be quite long, as the client can sleep while the connection is still kept al