ホームページ >ウェブフロントエンド >jsチュートリアル >Node.js MongoDBドライバー Mongooseの基本的な使い方tutorial_node.js
mongoose を使用すると、面倒なビジネス ロジックを作成せずに、mongodb データベースをより効果的に使用できるようになります。
インストール
npm install mongoose
を使用して初期化します
mongoose を使用する前に、node と mongodb をインストールする必要があります。node と mongodb のインストール方法についてはここでは説明しません。
var mongoose = require("mongoose"); var Schema = mongoose.Schema; var db = mongoose.connection; mongoose.connect('mongodb://localhost/animal'); db.on('error', console.error); db.once('open', function() { //这里建立模式和模型 }
クイックスタート
mongoose では、すべてのデータはスキーマであり、各スキーマは mongodb コレクションにマップされ、コレクション ファイル構造を定義します。
//这里建立一个动物的模式,所有动物都拥有这个模式下的所有属性 var animalSchema = new Schema({ name: String, age: Number, });
モデルは、スキーマから定義する多様なコンストラクターです。モデルのインスタンスでは、すべてのドキュメントの作成と取得がモデルによって処理されます。
var animalMode = db.model('Animal', animalSchema);
モデルのインスタンスは本質的にファイルであり、そのようなファイルは簡単に作成および変更できます
var cat = new animalMode({ name: 'catName', age: '7', //这里依然使用字符串,mongoose会自动转换类型 }); cat.save(function(err, thor) { if (err) return console.log(err); console.log(thor); }); //或者可以使用create //cat.create(function(err, thor) { // if (err) return console.log(err); // console.log(thor); //}); //执行查找 animalMode.find(function(err, people){ if(err) console.log(err); console.log(people); }); //查找符合条件数据 animalMode.findOne({title: 'catName'}, function(err, cat){ if(err) console.log(err); console.log(cat); });
スキーマ
データ型
これらは、mongoose のカスタム データ型を含むスキーマのすべてのデータ型です
各データ型の使用法
var animalMode = mongoose.model('Animal', schema); var cat = new animalMode; cat.name = 'Statue of Liberty' //String cat.age = '7'; //Number cat.updated = new Date; //Date cat.binary = new Buffer(0); //Buffer cat.living = false; //Boolean cat.mixed = { any: { thing: 'i want' } }; //Mixed cat._someId = new mongoose.Types.ObjectId; //ObjectId cat.ofString.push("strings!"); //Array
Mixed は mongoose によってカスタマイズされた混合型です。Mixed は特定の内容を定義しないため、次の 2 つの定義形式は同等です。
var animalSchema = new Schema({any: {}}); var animalSchema = new Schema({any: {Schema.Types.Mixed}});
カスタムメソッド
メソッドをスキーマにバインドできます
var animalSchema = new Schema({ name: String, age: Number, }); animalSchema.methods.findSimilarTypes = function (cb) { return this.model('Animal').find({ name: this.name }, cb); } var animalMode = db.model('Animal', animalSchema); cat.findSimilarTypes(function(err, cat){ if(err) console.log(err); console.log(cat); });
静的メソッドをスキーマに追加することもできます
animalSchema.statics.findByName = function (name, cb) { return this.find({ name: new RegExp(name, 'i') }, cb); } var animalMode = db.model('Animal', animalSchema); animalMode.findByName('catName', function (err, animals) { console.log(animals); });
インデックス
mongodb データにインデックスを付けることができます。Mongodb はセカンダリ インデックスをサポートしています。データの検索と位置決めを改善するには、複合インデックスを確立する必要があります。
var animalSchema = new Schema({ name: String, age: Number, tags: { age: [String], index: true } // field level }); animalSchema.index({ name: 1, age: -1 }); // schema level
ただし、この種のインデックスの確立は、パフォーマンスに重大な影響を与える可能性があります。運用環境ではこれを停止し、セットアップ モードで自動インデックス作成を false に設定して無効にすることをお勧めします。
animalSchema.set('autoIndex', false); // or new Schema({..}, { autoIndex: false });
モデル
ち
cat.save(function(err, thor) { if (err) return console.log(err); console.log(thor); }); //或者可以使用create cat.create(function(err, thor) { if (err) return console.log(err); console.log(thor); });
R
//find animalMode.find(function(err, cat){ if (err) console.log(err); console.log(cat); }) //findOne animalMode.findOne({name: 'catName'}, function(err, cat){ if (err) console.log(err); console.log(cat); }) //findByID //与 findOne 相同,但它接收文档的 _id 作为参数,返回单个文档。_id //可以是字符串或 ObjectId 对象。 animalMode.findById(id, function(err, adventure){ if (err) consoel.log(err); console.log(adventure); }); //where //查询数据类型是字符串时,可支持正则 animalMode.where('age', '2').exec(function(err, cat){ if (err) console.log(err); console.log(cat); }); animalMode .where('age').gte(1).lte(10) .where('name', 'catName') .exec(function(err, cat){ if (err) console.log(err); console.log(cat); });
う
公式ドキュメントが提供する更新関数 Model.update
Model.update(条件, ドキュメント, [オプション], [コールバック])
animalMode.update({name: 'catName'}, {age: '6'}, {multi : true}, function(err, numberAffected, raw){ if (err) return console.log(err); console.log('The number of updated documents was %d', numberAffected); console.log('The raw response from Mongo was ', raw); });
D
animalMode.remove({age: 6}, function(err){ if (err) console.log(err); })
その他
//ドキュメントの数を返します
animalMode.count({age: 2}, function(err, cat){ if (err) console.log(err); console.log(cat); })