參考:http://jishu.zol.com.cn/201057.htmlhtml
1)避免UI閃爍spa
Angular的自動數據綁定功能是亮點,然而,他的另外一面是:在Angular初始化以前,頁面中可能會給用戶呈現出沒有解析的表達式。當DOM準備就緒,Angular計算並替換相應的值。這樣就會致使出現一個醜陋的閃爍效果。code
<p>{{ phone.snippet }}</p>
改成orm
<p ng-bind="phone.snippet"></p>
2)依賴注入htm
module.service('myservice', function($http, $q) { // This breaks when minified });
改成ip
module.service('myservice', [ '$http', '$q', function($http, $q) { // Using the array syntax to declare dependencies works with minification<b>!</b> }]);