使用嵌套的mongoose模式时,如何使用ng-model在DOM中绑定它?

时间:2014-07-29 00:06:57

标签: angularjs mongoose angular-ngmodel

我使用Mongoose创建了一个模式,里面有一些嵌套元素,我不知道如何用ng-model引用它。我知道解决方案可能正好盯着我,但我无法弄清楚。

删除其他详细信息,这是我的架构的嵌套部分:

var taskSchema = new schema({
  milestones: [{
    date: Date,
    milestone: String
  }],
  notes: [{
    date: Date,
    note: String
  }]
});

以下是我试图绑定表单的方式

<textarea rows="2" width="60" placeholder="Why do you want to {{ task.title | lowercase }}?" ng-model="task.notes.note"></textarea>

<input type="text" ng-model="task.milestones.milestone">

提前感谢您的建议。

0 个答案:

没有答案