以下是使用 mongoose 创建新集合时出现的错误。
D:\Workspace\node-2012-20\node\node_modules\mongoose\lib\index.js:191
throw new Error('Schema hasn\'t been registered for model "' + name + '"
^
Error: Schema hasn't been registered for model "testDocAccessModel".
Use mongoose.model(name, schema)
at Mongoose.model (D:\Workspace\node-2012-20\node\node_modules\mongoose\lib\index.js:191)
at Module._compile (module.js:449:26)
at Object.Module._extensions..js (module.js:467:10)
at Module.load (module.js:356:32)
下面是代码
var mongoose = require('mongoose');
var Schema = mongoose.Schema;
exports.TestDocumentAccessSchema = new Schema({
Id: { type: Schema.ObjectId },
parentId: { type: Schema.ObjectId },
userId: { type : String },
userName: { type : String },
});
var testDocAccessModel = mongoose.model('TestDocumentAccess', exports.TestDocumentAccessSchema);
有什么线索吗?