我是Angular JS的新手。
你们中有谁能解释一下ngBind,ngBindHtm& ngBindTemplate在Angular JS中有一个例子?
NG-绑定
原文链接:https://www.f2er.com/angularjs/144246.htmlngBind用于使用给定表达式的值替换指定HTML元素的文本内容。例如,如果你有一个html,如下所示< b ng-bind =“name”>< / b>并在您的控制器中给出名称为$ scope.name =“John”的值。这将导致< b> John< / b>。但是您不能在单个html元素中使用多个值进行绑定。例如
$scope.first_name = "John"; $scope.second_name = "D"; <b ng-bind="first_name second_name"></b>
这不会将结果作为< b> John D< / b>只绑定first_name。因此,为了绑定多个值,我们可以使用ng-bind-template
NG-绑定模板
$scope.first_name = "John"; $scope.second_name = "D"; <b ng-bind-template="{{first_name second_name}}"></b>
这导致< b> John D< / b>
但是您无法在这两个表单中呈现html标签。对于渲染html模板,我们可以使用ng-bind-html。
NG绑定,HTML
$scope.name = "<b>John</b>"; <div ng-bind-html="name"></div>