我正在尝试运行 put 函数来更新我的 mongoDB 中的用户,但我收到 500 内部服务错误。我正在使用angular-fullstack生成器
我在控制器中使用此资源:
update(User) {
User.$update();
}
以下是我在后端调用的函数,以尝试输入数据,一切似乎都工作正常,除了当我调用 saveUpdates 时,似乎触发了 500 错误。:
function handleError(res, statusCode) {
statusCode = statusCode || 500;
return function(err) {
res.status(statusCode).send(err);
};
}
// this seems to be the function giving me the problem.
function saveUpdates(updates) {
return function(entity) {
var updated = _.merge(entity, updates);
return updated.saveAsync()
.spread(updated => {
return updated;
});
};
}
function respondWithResult(res, statusCode) {
statusCode = statusCode || 200;
return function(entity) {
if (entity) {
res.status(statusCode).json(entity);
}
};
}
function handleEntityNotFound(res) {
return function(entity) {
if (!entity) {
res.status(404).end();
return null;
}
return entity;
};
}
export function updateUser(req, res) {
if (req.body._id) {
delete req.body._id;
}
User.findByIdAndUpdate(req.params.id)
.then(handleEntityNotFound(res))
.then(saveUpdates(req.body))
.then(respondWithResult(res))
.catch(handleError(res));
}
我已尝试在此页面上针对 angular-full 堆栈执行以下建议,例如将 ._merge 更改为 ._extend 无济于事。