4
我想在屏幕上顯示我的第一個視圖。我使用了角度的所有概念。但它不顯示或加載我的模板。我沒有得到任何錯誤。但這不加載HTML上爲什麼這裏是我的代碼爲什麼應用程序不能顯示角度js中的第一個視圖
(function() {
'use strict';
angular.module('app.auth').config(Routes);
Routes.$inject = ['$stateProvider', '$urlRouterProvider'];
function Routes($stateProvider, $urlRouterProvider) {
console.log("config call")
// Default
$urlRouterProvider.otherwise('signin');
// Application
$stateProvider
.state('signin', {
url: '/sign-in',
templateUrl: 'js/auth/template/login.html',
controller: 'authenticationCntrl'
})
}
})();
其實我的login.html無法加載,爲什麼?爲什麼沒有加載它..
這裏是我的項目 https://dl.dropbox.com/s/x8s0xbllm270rq5/firstfroject.zip?dl=0
啓動此代碼時,瀏覽器中的網址是什麼?我會說你應該在.otherwise('/ sign-in')中使用url路徑,但是你改用州名。如果不是這個原因,你能否提供跳板來測試? – MSadura 2015-03-19 07:56:18
url is this ..http:// localhost:63342/firstfroject/www/index.html#/ signin ..實際上我無法在plunker中創建目錄,爲什麼我沒有使用plunker編輯器 – user944513 2015-03-19 07:59:15
這裏是我的項目https ://dl.dropbox.com/s/x8s0xbllm270rq5/firstfroject.zip?dl = 0 \ – user944513 2015-03-19 08:03:46