1

是否可以使用 autoValue 创建“updatesHistory.$.date”(其中 $ 从 0 到 n)?我的 for 语句看起来无法在 autovalue 函数中执行。

// Whenever the "content" field is updated, automatically
// update a history array.
updatesHistory: {
type: [Object],
optional: true,
autoValue: function() {
  var content = this.field("content");
  if (content.isSet) {
    if (this.isInsert) {
      return [{
          date: new Date,
          content: content.value
        }];
    } else {
      return {
        $push: {
          date: new Date,
          content: content.value
        }
      };
    }
  } else {
    this.unset();
  }
}
},
'updatesHistory.$.date': {
type: Date,
optional: true
},
'updatesHistory.$.content': {
type: String,
optional: true
},
4

0 回答 0