```js
var mongoose = require('mongoose')
// Schema: 图表,架构,模式
var Schema = mongoose.Schema
// 1. 连接数据库,如果没有则自动创建
mongoose.connect('mongodb://localhost/itcast')
// 2. 设计文档(集合)结构(表结构)
// 字段名称就是表结构中的属性名称
// 约束的目的是为了保证数据的完整性,不要有多余的数据
var userSchema = new Schema({
username: {
type: String,
required: true // 必须有,不能为空
},
password: {
type: String,
required: true
},
email: {
type: String
}
})
// 3. 将文档结构发布为模型
// mongoose.model() 方法:将一个架构发布为 model
// 第一个参数:数据库名称,mongoose 会自动将大写名词的字符串自动生成 小写复数 的集合名称
// 例如:User 会变为 users 集合名称
// 第二个参数: 架构 Schema
// 返回值:模型构造函数
var User = mongoose.model('User', userSchema);
// 4. 当我们有了模型构造函数之后,就可以使用这个构造函数操作 users 集合中的数据
var admin = new User({
username: 'adming',
password: '123456',
email: 'admin@admin.com'
})
// 新增
admin.save(function (err, res) {
if (err) {
console.log('保存失败');
} else {
console.log('保存成功');
console.log(res);
}
})
```
- 1. Node.js介绍
- 2. Node读取文件
- 3. Node写文件
- 4. http服务
- 5. 发送文件中的数据以及Content-Type内容类型
- 5.1 仿制接口
- 6. Node.js中的模块系统
- 7. 在node中使用模板引擎
- 8. 服务端渲染与客户端渲染
- 9. exports 与 module.exports的区别
- 10. npm
- 11. Express
- 0. 安装
- 1. 开放端口以及静态资源
- 2. 基本路由
- 3. Express使用art-template
- 4. 在Express中获取表单POST请求体数据
- 5. 使用Express路由模块
- 6. Express 跨域
- 7. md加密
- 12. nodemon实现代码修改自动重启
- 13. MongoDB
- 13. MongoDB安装与介绍
- 14. 启动和关闭mongoDB
- 15. 连接和退出MongoDB数据库
- 16. 基本命令
- 17. 在node中操作mongodb数据库
- 18. mongoDB开始&新增数据
- 19. 查询
- 附:Express留言板项目
- 20. path 路径操作模块
- 21. Node 中的其他成员
- 22. art-template中的include用法
- 附:学生信息管理系统