AngularJS教程七—— 框架概述

hy3112發表於2015-09-11

一 目錄結構

enter image description here

二 自定義框架頁面

如果需要自定義框架頁面,如登入、選單欄、header等,可以通過如下方式進行:

App.run(["$rootScope", "$templateCache", function($rootScope, $templateCache) {

    $templateCache.remove("layout/login.html");

    // 其他專案自定義配置資訊

}]);

先通過上面的方式去掉預設的框架頁,然後在layout目錄加入自定義的該檔案

相關文章