我的目标是在ng-repeat中具有多态性。每个字段都有不同的html(由jquery生成)。
<div ng-repeat="field in fields" ng-bind-html="field.html"></div>
例如,$ scope.fields [0] .html是
<input ng-model="field.bio">
$ scope.fields [1] .html是
<label>what's your name?</label><input ng-model="field.name">
我希望当文本框输入时,将填充相应字段的bio或name属性。但是,它不是。
所以我想知道如何将在js中创建的文本框绑定到ng-repeat中的项目?