无法将范围变量绑定到angular js中的html元素

时间:2019-03-25 07:54:47

标签: html angularjs angularjs-scope ng-bind

我从函数$scope.getPIRData中获得了一些类似“ OPEN”或“ CLOSE”的值,该值存储在$scope.pirstatus中,我试图在HTML标头标签中显示{{ 1}},但在与JavaScript <h1> {{pirstatus}}</h1>一起使用时,按钮单击中未显示任何内容。

document.getelementbyid

1 个答案:

答案 0 :(得分:0)

您可以尝试使用AngularJS中的ng-bind属性。 在您的代码中,如果您修改h1标记,则下面的代码应该起作用 <h1 ng-bind="pirstatus"></h1> 请参考此示例-https://www.w3schools.com/angular/tryit.asp?filename=try_ng_ng-bind