我使用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">
提前感谢您的建议。