gpt4 book ai didi

angularjs - angularjs 1.4中的一种绑定(bind)方式

转载 作者:行者123 更新时间:2023-12-04 16:59:37 25 4
gpt4 key购买 nike

根据Exploring Angular 1.3: One time bindings ;

Using new syntax is as easy as starting an expression with ::. So if we apply the one-time expression to our example above, we change this:

<p>Hello {{name}}!</p>

To this

<p>Hello {{::name}}!</p>

and it is now one way binding.



但是,当使用 ng-class 等 Angular 指令时,我们如何创建一次性绑定(bind)?我尝试了以下方法,但没有奏效:
ng-model="::name"
ng-class="['label',{'label-danger': 'High' == ::tsk.Priority}]:

最佳答案

在这里得到我的答案http://toddmotto.com/angular-one-time-binding-syntax/

{{ ::vm.user }}

<div ng-if="::vm.user.loggedIn"></div>

<div ng-class="::{ loggedIn: vm.user.loggedIn }"></div>

<ul>
<li ng-repeat="user in ::vm.users"></li>
</ul>

感谢downvoters。

关于angularjs - angularjs 1.4中的一种绑定(bind)方式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30476821/

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