我想将一组可能的作者作为输入呈现,以便可以编辑分配的作者。
.form-multiple-item(ng-repeat="author in story.authors")
input(type='text', ng-model="author")
问题是如果我想在现有输入之后添加一个额外的空白输入。我怎样才能做到这一点?
.form-multiple-item(ng-repeat="author in story.authors")
input(type='text', ng-model="author")
input(type='text', ng-model="author")
例如,这不起作用,因为作者不在正确的范围内。
如果我有story.authors = [""]
我想呈现一个空白输入供用户填写。但这也不起作用,因为""
它只是被 ng-repeat 忽略而不是渲染一个空输入来填充。我该如何渲染一个空输入,或者将另一个 ng-model 插入另一个范围内的数组中。