我正在尝试“使用带有 Express 和 Mongoose 的 Node.js 开发 RESTful API”示例,但遇到了 MongoDB Schema 的问题:
POST:
{ title: 'My Awesome T-shirt 2',
description: 'All about the details. Of course it\'s black.',
style: '12345' }
{ [MongoError: E11000 duplicate key error index: ecomm_database.products.$style_1 dup key: { : "12345" }]
name: 'MongoError',
err: 'E11000 duplicate key error index: ecomm_database.products.$style_1 dup key: { : "12345" }',
架构定义中有一个独特的约束:
var Product = new Schema({
title: { type: String, required: true },
description: { type: String, required: true },
style: { type: String, unique: true },
modified: { type: Date, default: Date.now } });
我该如何摆脱它?当我删除 unique: true 并重新启动应用程序时,架构不会更新。
mongodb 如何处理模式的“更改”?