有没有办法通过html绑定到角度1.x的变量属性?
我有一个数据对象需要根据某些条件进行更新,这会改变它应该绑定的属性:
<div ng-repeat="option in options">
<custom-component selected="$ctrl.data[option.dataProperty]"></custom-component>
</div>
我似乎无法通过单向或双向绑定将其绑定到customComponent
。非常感谢任何其他建议。
更新
感谢您的评论,写下了这个问题为我解决了问题:)你可以为后人找到它here。谢谢!