ngBind (directive)

Improve this Doc View Source ngBind

  1. directive in module ng

The ngBind attribute tells Angular to replace the text content of the specified HTML element with the value of a given expression, and to update the text content when the value of that expression changes.

Typically, you don't use ngBind directly, but instead you use the double curly markup like {{ expression }} which is similar but less verbose.

It is preferable to use ngBind instead of {{ expression }} if a template is momentarily displayed by the browser in its raw state before Angular compiles it. Since ngBind is an element attribute, it makes the bindings invisible to the user while the page is loading.

An alternative solution to this problem would be using the ngCloak directive-

Directive Info

  • This directive executes at priority level 0-

Usage

  • as attribute:
    <ANY
      ng-bind="">
    ...
    </ANY>
  • as CSS class:
    <ANY class="ng-bind: ;"> ... </ANY>

Arguments

Param Type Details
ngBind expression

Expression to evaluate.

Enter a name in the Live Preview text box; the greeting below the text box changes instantly.

© 2010–2016 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://code.angularjs.org/1.2.32/docs/api/ng/directive/ngBind

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部