AngularJS:如何在动态创建后访问$ scope对象

时间:2015-06-19 18:22:53

标签: angularjs dynamic angularjs-scope angularjs-ng-repeat angularjs-model

我已根据表格中的动态列创建了动态过滤器:

enter image description here 使用下面的代码动态生成绑定模型:

<div data-ng-repeat="label in bluePrintItems[0].labels" class="form-group col-sm-3 col-md-2">
   <label>{{label}}</label>
   <input type="text" class="form-control" placeholder="{{label}}" data-ng-model="dynamicFilters[label]" value="hello">
</div>

问题在于我不知道如何访问这些动态模型。正如您在此图片中看到的,动态模型显示在我的AngularJS chrome扩展查看器中:

enter image description here

但是当我使用Chrome开发工具检查它时,它显示为一个空对象:

enter image description here

0 个答案:

没有答案