0

我正在尝试运行 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 无济于事。

4

1 回答 1

1

我回答了我的问题:

Angular-full 堆栈使用 lodash,所以如果你想使用 ._merge 发出 put 请求,如下所示:

function saveUpdates(updates) {
  return function(entity) {
    var updated = _.merge(entity, updates);
    return updated.saveAsync()
      .spread(updated => {
        return updated;
      });
  };
}

那么你需要将 lodash 导入到由 angular-fullstack yeoman 生成器设置的 user.contoller 中。

import _ from 'lodash';
于 2016-02-23T21:55:57.433 回答