gpt4 book ai didi

javascript - AngularJS:从 Controller 函数绑定(bind)属性值

转载 作者:行者123 更新时间:2023-12-03 16:28:14 25 4
gpt4 key购买 nike

我的标记是:

<input char-limit="10" />

然后我需要从 Controller 设置属性值,所以我这样做了:

 <input char-limit="{{charLimit}}" />

在 Controller 中:

$scope.charLimit = <my value>;

现在,不再直接使用模型值;我需要使用函数返回值。所以我做了:

<input char-limit="getCharLimit()" />

在 Controller 中:

$scope.getCharLimit= function(){
return <my value>;
}

但该值并未反射(reflect)在标记中。

最佳答案

您需要将函数括在花括号内

<input char-limit="{{getCharLimit()}}" />

关于javascript - AngularJS:从 Controller 函数绑定(bind)属性值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31871334/

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