【发布时间】:2014-05-27 03:24:09
【问题描述】:
我正在使用 Mongoose (v. 3.8.8) 来更新我的模型“权限”的一些数据。这是架构:
var PermissionSchema = new Schema({
name : {
type: String, required: true, index: true
},
httpVerb : {
type: String, required: true
},
url : {
type: String, required: true
}
});
mongoose.model('Permission', PermissionSchema);
现在我在另一个模块中有一个使用 Promise 的函数:
module.exports.updatePermission = function (id, updatedPermission) {
var conditions = {_id: id};
var promiseUpdate = Permission.update(conditions, updatedPermission).exec();
logger.debug('this line is not executed when CastError occurs');
var promiseFind = promiseUpdate.then(function (permission) {
return Permission.findOne(conditions).exec();
}).then(null, function (error) {
logger.info('CastError does not get in here');
logger.error(error);
//error handled here
});
return promiseFind;
}
当我使用此示例参数调用该函数时:
id: 53496a2e1722ff2d1a55a4d2
updatedPermission: {name: 'this is my new name'}
一切正常,因为集合中已经存在 _id 确实。
现在,当我使用以下参数时,故意传递一个无效且不存在的 _id :
id: 53496a2e1722ff2d1a55a4d22
updatedPermission: {name: 'this is my new name'}
我得到以下异常:
CastError: Cast to ObjectId failed for value "53496a2e1722ff2d1a55a4d22" at path "_id"
at ObjectId.cast (/home/jhon/environment/workspaces/nodejs-workspace/auth/server/node_modules/mongoose/lib/schema/objectid.js:116:13)
at ObjectId.castForQuery (/home/jhon/environment/workspaces/nodejs-workspace/auth/server/node_modules/mongoose/lib/schema/objectid.js:165:17)
at Query.cast (/home/jhon/environment/workspaces/nodejs-workspace/auth/server/node_modules/mongoose/lib/query.js:2291:32)
at castQuery (/home/jhon/environment/workspaces/nodejs-workspace/auth/server/node_modules/mongoose/lib/query.js:2015:18)
at Query.update (/home/jhon/environment/workspaces/nodejs-workspace/auth/server/node_modules/mongoose/lib/query.js:1704:21)
at Function.update (/home/jhon/environment/workspaces/nodejs-workspace/auth/server/node_modules/mongoose/lib/model.js:1606:13)
at Object.module.exports.updatePermission (/home/jhon/environment/workspaces/nodejs-workspace/auth/server/app/repository/auth/PermissionRepository.js:50:36)
我原以为当 promise 被拒绝时会出现此错误,即在 updatePermission 函数的第二个“then”中。
问题是:这是 Mongoose 的错误吗? - 如果不使用 try/catch,我该如何处理?
【问题讨论】: