如何访问ng-form指令创建的范围?

时间:2017-05-14 16:20:29

标签: angularjs

我们说我有这个代码。

<ng-form name="section_{{$index}}" ng-repeat="section in app.sections">
    {{section_$index}}
</ng-form>

我想知道例如部分是否有效等。例如{{section_1。$ valid}}。

那么当基于$ index值的名称是动态时,如何访问ng-form创建的范围?

1 个答案:

答案 0 :(得分:0)

行。明白了。

我做了什么

<form name="s.form">
    <ng-form name="section_{{$index}}" ng-repeat="section in app.sections">
        {{s.form['section_'+$index]}}
    </ng-form>
</form>