尝试插入嵌入文档时,角度视图应该是什么样的?
这是我在节点中的模型:
var ArticleSchema = new Schema({
/*other fields that aren't relavent here */
allowed_countries:[CountrySchema]
});
var CountrySchema = new Schema({
country: {
type: String,
default: '',
trim: true
}
});
这是我为Angular View尝试的内容:
<div class="control-group">
<label class="control-label" for="allowed_countries.country">Allowed Countries</label>
<div class="controls">
<input type="text" data-ng-model="allowed_countries.country" id="allowed_countries.country">
</div>
</div>
显然,这不起作用,但我不确定为什么你应该如何解决Angular中的子文档的视图(我的google-fu让我失望)
任何帮助都将不胜感激。