Node.js

構文
dbo.collection(コレクション名).find(条件式).toArray(function(err, result){
some code
}
サンプルコード

var MongoC ...

Node.js

構文
dbo.collection(“testtbl”).deleteMany(whereStr, function(err, obj) {some code}

サンプルコード

var ...

Node.js

構文
dbo.collection(“xxx”).deleteOne(条件, function(err, obj)
サンプルコード

var MongoClient = require('m ...

Node.js

構文
fs.stat(path, callback)
引数にファイルのパスとコールバック関数を受け取ります。
ファイル名 file.js

サンプルコード

var fs = require("f ...

Node.js

構文
dbo.collection(xxx).find().skip(xx).limit(xx)

サンプルコード

var MongoClient = require('mongodb').MongoClien ...

Node.js

構文
{ type: 1 }//type 昇順
{ type: -1 }//type 降順
サンプルコード

var MongoClient = require('mongodb').MongoClient ...

Node.js

構文
fs.writeFile(file, data, callback)

使用例 testfile.js

var fs = require("fs");console.log("start write fi ...

Node.js

構文
dbo.collection(“usercollect”).insertOne(cftobj, function(err, res) {some code}

使用例sample.js ...

Node.js

構文
dbo.collection(コレクション名). find({}).toArray(function(err, result) {
使用例

var MongoClient = require('mongod ...

Node.js

ファイル名 main.js
使用例

function printMsg(){ console.log( "Hello, World!");}//2秒以上関数実行var t = setTimeout(printMsg, 2 ...

Node.js

説明
setTimeout() を使用して、 指定したミリ秒後に コードの実行をスケジュールすることができます。

main.js

function printMsg(){ console.log( "stud ...

Node.js

構文
変数名.createCollection(コレクションの名前, function (err, res) {some code}

サンプルコード

var MongoClient = require('mo ...

Node.js

説明
setInterval() は2番目の引数として指定されたミリ秒の遅れで無限回実行する関数の引数を取ります。

サンプルコード

function printMsg(){ console.log( "Hel ...