Rumah >hujung hadapan web >tutorial js >Dokumentasi Mongoose
pasang mangga
npm install mongoose
.
.
Untuk menyambung ke mongodb dengan menggunakan mongoose
cth:app.js
const mongoose=require('mongoose'); mongoose .connect('url'); .then(res=>app.listen(3000)); .catch(err=>console.log(err));
.
.
Untuk membuat skema
cth:model folder 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);
.
.
Untuk mencipta pelajar
cth:folder pengawal
console.log('hi')
Atas ialah kandungan terperinci Dokumentasi Mongoose. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!