2

我有一个 Express/Mongo 健康跟踪应用程序的后端 API。

weighIns每个用户都有一个包含值、单位和记录日期的子文档数组。如果未指定单位,则单位默认为'lb'

const WeighInSchema = new Schema({
  weight: {
    type: Number,
    required: 'A value is required',
  },
  unit: {
    type: String,
    default: 'lb',
  },
  date: {
    type: Date,
    default: Date.now,
  },
});

每个用户还有一个 defaultUnit 字段,可以为该用户指定一个默认单位。如果该用户在未指定单位的情况下发布了 weightIn,则该 weightIn 应使用用户的 defaultUnit(如果存在),否则默认为'lb'.

const UserSchema = new Schema({
  email: {
    type: String,
    unique: true,
    lowercase: true,
    required: 'Email address is required',
    validate: [validateEmail, 'Please enter a valid email'],
  },
  password: {
    type: String,
  },
  weighIns: [WeighInSchema],
  defaultUnit: String,
});

这个逻辑的正确位置在哪里?

我可以在我的 WeighInsController 的 create 方法中轻松地做到这一点,但这似乎充其量不是最佳实践,最坏的情况是反模式。

// WeighInsController.js

export const create = function create(req, res, next) {
  const { user, body: { weight } } = req;
  const unit = req.body.unit || user.defaultUnit;
  const count = user.weighIns.push({
    weight,
    unit,
  });
  user.save((err) => {
    if (err) { return next(err); }
    res.json({ weighIn: user.weighIns[count - 1] });
  });
};

似乎不可能在 Mongoose 模式中指定对父文档的引用,但我认为更好的选择是在pre('validate')子文档的中间件中。我也看不到在子文档中间件中引用父文档的方法。

注意:这个答案不起作用,因为我不想覆盖所有用户的 WeighIns 单位,只是在POST请求中未指定时。

我是否被困在我的控制器中?我从 Rails 开始,所以我的大脑上刻有“胖模型,瘦控制器”。

4

1 回答 1

1

您可以使用该功能从子文档 (WeighIn) 访问父 (用户) this.parent()

但是,我不确定是否可以将静态添加到子文档中,以便这样的事情成为可能:

user.weighIns.myCustomMethod(req.body)

相反,您可以在 UserSchema 上创建一个方法,例如 addWeightIn:

UserSchema.methods.addWeightIn = function ({ weight, unit }) {
  this.weightIns.push({
    weight,
    unit: unit || this.defaultUnit
  })
}

然后只需user.addWeightIn在控制器中调用该函数并将其传递req.body给它。这样,您将获得“胖模型,瘦控制器”。

于 2018-12-02T13:31:58.727 回答