我正在创建一个自定义部分,在我的一个控制器中,我成功地创建了propertyeditor对象的载体。
在我看来,这是有效的
<umb-property property="vm.propertEditors[0]" ng-if="!vm.isNew">
<umb-editor model="vm.propertEditors[0]"></umb-editor>
</umb-property>
<umb-property property="vm.propertEditors[1]" ng-if="!vm.isNew">
<umb-editor model="vm.propertEditors[1]"></umb-editor>
</umb-property>
<umb-property property="vm.propertEditors[2]" ng-if="!vm.isNew">
<umb-editor model="vm.propertEditors[2]"></umb-editor>
</umb-property>
,但是我真正想做的就是浏览,现在我知道我该怎么做是循环的JS,但是我敢肯定必须有一种角度的方式,我仍然可以握住有了角度,请原谅我的精神。
在AngularJS中,您可以使用ng-repeat
循环循环。例如:
<umb-property ng-repeat="editor in vm.propertEditors" property="editor" ng-if="!vm.isNew">
<umb-editor model="editor"></umb-editor>
</umb-property>
有关更多信息,您可以在此处找到NG-Repeat文档:https://docs.angularjs.org/api/ng/directive/ngrepeat