これはかなり標準的な質問ですが、私は何かオンラインで解決策を見つけることはできません。以下は私が使用しているrouter/index.htmlのページです。私はコンソールに何のエラーも出ませんが、URLが正しくログインページに解決されると、ページ全体が空白になります。任意のアイデア、私は行方不明の下のコードを見て、?ui-routerのネスト状態はロードされません
ルータ
(function(){
'use strict'
var app = angular.module('app.core');
app.config(AppRouter);
AppRouter.$inject = ['$stateProvider', '$urlRouterProvider'];
function AppRouter($stateProvider, $urlRouterProvider){
$urlRouterProvider.otherwise('/login');
$stateProvider
.state('main', {
url: '/main',
abstract: true,
resolve:{
Config: 'Config',
config: function(Config){
console.log(Config);
return Config;
}
}
})
.state('main.login', {
url: '/login',
templateUrl: 'app/components/login/login.html',
controller: 'LoginController',
controllerAs: 'vm',
reloadOnSearch: false
})
}
})();
index.htmlを
<div class="slide-animation-container">
<div ui-view id="ng-view" class="slide-animation"></div>
{{scrollTo}}
</div>
login.htmlと
<div class="container" ui-view>
<div class="row vertical-center-row">
<form id="loginForm" class="form-signin" style="max-width:300px;" autocomplete="off" ng-if="attemptLogin">
<h2 class="form-signin-heading" style="font-size:22px">Please Sign In</h2>
<div class="input-group">
<span class="input-group-addon"><i class="fa fa-user"></i></span></span>
<input type="text" class="form-control" id="username" placeholder="User Name" ng-model="user.username" required>
</div>
</form>
</div>
</div>
EDITルータは上記の私のコアモジュールのための私のconfig.js
ファイルに存在
:
core.module.js
(function(){
'use strict'
angular.module('app.core', ['angulartics', 'angulartics.google.analytics', 'angulartics.scroll', 'ngRoute', 'ngAnimate', 'ng.deviceDetector', 'ui.router',
'ui.bootstrap', 'ngTable', 'ngSanitize', 'ngCsv', 'toastr', 'angular.chosen', 'rzModule', 'publicServices']);
})();
抽象的なルートで '' template.html''を指している '' templateURL'''を設定していません。あなたはあなたのアプリケーションモジュール宣言に 'ui.router'を注入する必要があります。 – Dario
抽象状態でも 'templateURL'を設定する必要がありますか? – NealR
[plunker](http://plnkr.co)、[jsFiddle](https://jsfiddle.net/)などの例を挙げることができますか?私は[プランナーを作成しようとしました](http://plnkr.co/edit/CfjZhg3IBbRINOjS6bz2?p=preview)、これらのライブラリのどのバージョンを使用しているのか分かりません... –