x
 
<!DOCTYPE html>
<html>
<script src="https://cdn.staticfile.net/angular.js/1.6.9/angular.min.js"></script>
<body ng-app="" ng-csp>
<div>
<p>我的第一个表达式:{{ 5 + 5 }}</p>
</div>
<p>通过使用 ng-app 指令,您正在改变 AngularJS 执行其自身代码的方式。</p>
<p>我们可能看不出区别,但 AngularJS 被迫使用另一种方式来评估表达式,这可能会使评估时间增加多达 30%。</p>
</body>
</html>