Angular.js 1.3 One-time binding in ng-bind

2019-03-22 18:40发布

问题:

In Angular.js 1.3 I can do a one time binding with:

{{::name}}

But how may I use this in ng-bind?

ng-bind had some performance improvements in comparison to the {{ syntax.

Is it supported?

回答1:

Yes. This works:

<span ng-bind="::name"></span>