在 MongooseError.CastError 连接 500 错误

Posted

技术标签:

【中文标题】在 MongooseError.CastError 连接 500 错误【英文标题】:Connect 500 Error at MongooseError.CastError 【发布时间】:2015-11-16 13:14:13 【问题描述】:

这是交易:我在 AngularJS/Node.JS 中有一个表单,它从 MongoDB 中提取表单问题并为每个答案分配值。我昨晚杀死了我的 MongoDB 数据库。幸运的是,我的 JSON 文件仍然可用。使用 JSON 文件创建了两个新集合(与以前的数据库同名),但现在我在尝试完成表单并将数据发布回数据库对象时收到此错误,该数组名为 answers:

Error
     at MongooseError.CastError ((HIDDEN)/node_modules/mongoose/lib/error/cast.js:18:16)
     at ObjectId.cast ((HIDDEN)/node_modules/mongoose/lib/schema/objectid.js:134:13)
     at Array.MongooseArray.mixin._cast ((HIDDEN)/node_modules/mongoose/lib/types/array.js:117:32)
     at Array.MongooseArray.mixin._mapCast ((HIDDEN)/node_modules/mongoose/lib/types/array.js:278:17)
     at Object.map (native)
     at Array.MongooseArray.mixin.push ((HIDDEN)/node_modules/mongoose/lib/types/array.js:291:25)
     at (HIDDEN)/controllers/user.js:236:22
     at (HIDDEN)/node_modules/async/lib/async.js:187:20
     at (HIDDEN)/node_modules/async/lib/async.js:239:13
     at _arrayEach ((HIDDEN)/node_modules/async/lib/async.js:91:13)
     at _each ((HIDDEN)/node_modules/async/lib/async.js:82:13)
     at Object.async.forEachOf.async.eachOf ((HIDDEN)/node_modules/async/lib/async.js:238:9)
     at Object.async.forEach.async.each ((HIDDEN)/node_modules/async/lib/async.js:215:22)
     at exports.postWizard ((HIDDEN)/controllers/user.js:233:11)
     at Layer.handle [as handle_request] ((HIDDEN)/node_modules/express/lib/router/layer.js:95:5)
     at next ((HIDDEN)/node_modules/express/lib/router/route.js:131:13)
POST /wizard 500 234.552 ms - -

【问题讨论】:

我想我必须为我的每个子文档创建 _id。有什么办法可以自动化吗? 【参考方案1】:

通过为嵌套对象生成 id 解决了这个问题。我不得不分贝插入每个文档。 MongoDB 不会自动为嵌套对象生成 ID;因此,我不得不使用 ObjectId() :

 db.questions.insert( 
    "question": "q1",
    "order": 1,
    "type": "assessment",
    "answers": [
        "_id" : ObjectId(),
        "answer": "Yes",
        "value": 1
    , 
        "_id" : ObjectId(),
        "answer": "No",
        "value": 0
 ])

【讨论】:

以上是关于在 MongooseError.CastError 连接 500 错误的主要内容,如果未能解决你的问题,请参考以下文章

分配的变量引用在哪里,在堆栈中还是在堆中?

NOIP 2015 & SDOI 2016 Round1 & CTSC 2016 & SDOI2016 Round2游记

秋的潇洒在啥?在啥在啥?

上传的数据在云端的怎么查看,保存在啥位置?

在 React 应用程序中在哪里转换数据 - 在 Express 中还是在前端使用 React?

存储在 plist 中的数据在模拟器中有效,但在设备中无效