<li class="item" style="margin-top:30%;" ng-repeat="a in result.result | filter: a.groupName=sortby">
<input id="a.switchID" type="checkbox" ng-change="send(a.deviceID,a.pinNumber)" ng-model="value4 "></input>
<label for="a.switchID"></label>
</li>
这是我的html代码,我想将id的值设置为a.switchID中的值,但是我无法在控制器中调用此元素。这是正确的方法吗?
答案 0 :(得分:0)
你有没有尝试过:
`<input id="{{a.switchID}}" type="checkbox" ng-change="send(a.deviceID,a.pinNumber)" ng-model="value4 "></input>`