「Node.js」find(検索条件)でMongoDBのコレクションのデータを取得する方法
構文
dbo.collection(コレクション名).find(条件式).toArray(function(err, result){
some code
}
サンプルコード
「Node.js」deleteMany関数でMongoDBの複数レコードを削除する
構文
dbo.collection(“testtbl”).deleteMany(whereStr, function(err, obj) {some code}
サンプルコード
var ...「Node.js」deleteOne関数でMongodbの1件データを削除する
構文
dbo.collection(“xxx”).deleteOne(条件, function(err, obj)
サンプルコード
「Node.js」fs.stat()メソッドでファイルの情報を取得する
構文
fs.stat(path, callback)
引数にファイルのパスとコールバック関数を受け取ります。
ファイル名 file.js
サンプルコード
var fs = require("f ...「Node.js」skip()とlimit()でMongodbのコレクションのデータを取得する
構文
dbo.collection(xxx).find().skip(xx).limit(xx)
サンプルコード
var MongoClient = require('mongodb').MongoClien ...「Node.js」find().sort()関数でMongoDBのデータをソートするサンプル
構文
{ type: 1 }//type 昇順
{ type: -1 }//type 降順
サンプルコード
「Node.js」fs.writeFileメソッドでファイルに書き込むサンプル
構文
fs.writeFile(file, data, callback)
使用例 testfile.js
var fs = require("fs");console.log("start write fi ...「Node.js」insertOne()メソッドでMongoDBのテーブルに一つデータを挿入するサンプル
構文
dbo.collection(“usercollect”).insertOne(cftobj, function(err, res) {some code}
使用例sample.js ...
「Node.js」find()ででMongoDBのコレクションのデータを検索する方法
構文
dbo.collection(コレクション名). find({}).toArray(function(err, result) {
使用例
「Node.js」clearTimeout()を使用するサンプル
ファイル名 main.js
使用例
「Node.js」setTimeout()を使用するサンプル
説明
setTimeout() を使用して、 指定したミリ秒後に コードの実行をスケジュールすることができます。
main.js
function printMsg(){ console.log( "stud ...「Node.js入門」createCollection() でMongoDBの コレクションを作成する
構文
変数名.createCollection(コレクションの名前, function (err, res) {some code}
サンプルコード
var MongoClient = require('mo ...「Node.js」setInterval() メソッドを使用するサンプル
説明
setInterval() は2番目の引数として指定されたミリ秒の遅れで無限回実行する関数の引数を取ります。
サンプルコード
function printMsg(){ console.log( "Hel ...