gpt4 book ai didi

javascript - 为什么 toString() 在 ng-model 属性中不起作用?

转载 作者:行者123 更新时间:2023-12-02 16:10:44 24 4
gpt4 key购买 nike

如何在 angularjs 中的 ng-model 属性上使用 toString()

我的 Controller 有一个数组变量

喜欢

$scope.UserNameList = ['a','b','c'];

我想将此数组绑定(bind)到字符串

<小时/>

我已经尝试过以下有效的代码:-

$scope.UserNameList.toString();//result is a,b,c

但是当我在 ng-model 属性中使用 toString() 时,它不起作用

<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

Why toString() is not working in ng-model attribute?

最佳答案

ng-model 用于双向数据绑定(bind),您无法合理地绑定(bind)到函数调用的结果。

如果您只想显示结果,请使用ng-bind

关于javascript - 为什么 toString() 在 ng-model 属性中不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30247781/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com