0
<div class="col-md-6 col-md-offset-3">
<ui-view=""></ui-view>
</div>
uiルーターを追加した後、以下のjsコードが実行されていません。angular-ui角度のついたルーターを持つルーター
誰でも自分のコードを見て、問題の原因を説明できますか?
スクリプトリファレンスもチェックしてあり、正しいものです。私はUIルータを追加するまで、ページは正常に動作していた。
app.controller('SampleCtrl', [
'$scope',
function($scope){
$scope.test = 'Hello world!';
$scope.posts = [
{title: 'post 1', upvotes: 5},
{title: 'post 2', upvotes: 2},
{title: 'post 3', upvotes: 15},
{title: 'post 4', upvotes: 9},
{title: 'post 5', upvotes: 4}
];
app.config([
'$stateProvider',
'$urlRouterProvider',
function($stateProvider, $urlRouterProvider) {
$urlRouterProvider.when("", "./Views/home");
$stateProvider
.state('""', {
name: 'home',
url: './Views/home',
templateUrl: './Views/home.html',
controller: 'SampleCtrl'
});
$urlRouterProvider.otherwise('home');
}]);
:
あなたのコードは次のようにする必要があります.state( ""、{' –
$ scope.posts = [];の後にコントローラを閉じずにすぐにapp.configを開始します。あなたがそこに置いたスニペットですか? – rrd
申し訳ありませんが、それはコンソールエラーではありません –