安装 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));
。
.
创建模式
例如:模型文件夹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);
。
.
创建学生
例如:控制器文件夹
console.log('hi')
免责声明: 提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发到邮箱:[email protected] 我们会第一时间内为您处理。
Copyright© 2022 湘ICP备2022001581号-3