angularjs – 防止双花括号符号显示之前angular.js编译/插补文档

前端之家收集整理的这篇文章主要介绍了angularjs – 防止双花括号符号显示之前angular.js编译/插补文档前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
它似乎是主要是一个问题在IE当有许多图像/脚本加载,可以有很多时间显示标记中的文字{{stringExpression}},然后消失一旦角度完成它是文档的编译/内插。

有一个常见的原因,为什么会发生这种情况,这将表明我做的事情一般错误,或有一个已知的方法来防止这一点?

我认为你正在寻找ngCloak指令: http://docs.angularjs.org/api/ng.directive:ngCloak

从文档:

The ngCloak directive is used to prevent the Angular html template
from being briefly displayed by the browser in its raw (uncompiled)
form while your application is loading. Use this directive to avoid
the undesirable flicker effect caused by the html template display.

The directive can be applied to the <body> element,but typically a fine-grained application is prefered in order to benefit from progressive rendering of the browser view.

原文链接:https://www.f2er.com/angularjs/147959.html

猜你在找的Angularjs相关文章