ホームページ >ウェブフロントエンド >jsチュートリアル >マングースのドキュメント
mangoose をインストール
npm install mongoose
.
.
mongoose
を使用して mongodb に接続するには
例:app.js
const mongoose=require('mongoose'); mongoose .connect('url'); .then(res=>app.listen(3000)); .catch(err=>console.log(err));
.
.
スキーマを作成するには
例:model フォルダーstudent.js
const mongoose = require('mongoose'); const studentSchema = mongoose.Schema({ name:{ type:String, required:true }, studentid:{ type:Number, required:true } }); module.exports=mongoose.model('students',studentSchema);
.
.
生徒を作成するには
例:controllers フォルダー
console.log('hi')
以上がマングースのドキュメントの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。