48

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?

Arulkumar
  • 12,966
  • 14
  • 47
  • 68
Boas Enkler
  • 12,264
  • 16
  • 69
  • 143

1 Answers1

88

Yes. This works:

<span ng-bind="::name"></span>
seldary
  • 6,186
  • 4
  • 40
  • 55