角。页面加载时,由角度呈现的文本会闪烁

时间:2016-11-23 14:37:19

标签: angularjs

我有简单的测试页

<head>
     ........
     <script src="~/lib/jquery/dist/jquery.js"></script>
     <script src="~/lib/bootstrap/dist/js/bootstrap.js"></script>
     <script src="~/lib/angular/angular.js"></script>
</head>
<body>
     .......
     <label>Name:</label>
     <input type="text" ng-model="name" placeholder="Enter name">
     <h1>Welcome {{name}}!</h1>
</body>

首次加载页面时,我会在页面上看到{{name}}

enter image description here

半秒后它消失了

enter image description here

这使得眨眼的效果非常烦人。我错过了什么,我该如何避免呢?

1 个答案:

答案 0 :(得分:2)

您可以使用ngCloak来阻止此行为。