angularjs
我的控制器有一个array
变量
喜欢
$scope.UserNameList = ['a','b','c'];
我想将此数组绑定到字符串
我在下面尝试了以下代码: -
$scope.UserNameList.toString();//result is a,b,c
但是当我在toString()
属性中使用ng-model
时,它无效
<td style="text-align: center"><label ng-model="UserNameList.toString()"></label></td>// Does not working
但如果我使用{{ListOfRoleName.toString()}}
,那么它就可以了。
<td style="text-align: center">{{ListOfRoleName.toString()}}</td>//Working
为什么
toString()
无效ng-model
属性?
答案 0 :(得分:2)
ng-model
用于双向数据绑定,您无法合理地绑定到函数调用的结果。
如果您只想显示结果,请改用ng-bind
。