route anglesjに問題があります。ページを参照するには、ブラウザのコンソールで、ビューが表示されていない場合は、オープン私は、このメッセージをしたenter image description here
controller.js
angular.module('contactMgr',['ngRoute'])
.controller('AppCtrl',function ($scope,$http){
// Controller for index.html
}
.config(function($routeProvider){
$routeProvider.when('/',{
controller: 'indexCtrl',
templateUrl: 'assets/partials/index.html'
})
.when('/add-contact',{
controller: 'addCtrl',
templateUrl: 'assets/partials/add.html'
});
})
.controller('indexCtrl',function($scope){
})
.controller('addCtrl',function($scope){
});
index.htmlを(ない資産/パーシャル/ index.htmlを
jqueryの-3.1.1.min.jsを
angul:私が使用して)
<div class="container">
<ng-view></ng-view>
</div>
ar.min.js v1.2.32
角度-route.min.js
ありがとう!
問題を解決しました。
min.jsをインポートしました。angular.min.jsとangular-route.min.jsをangular.jsとangular-route.jsで変更してもうまく動作しますが、なぜわかりません... 1つのサイトで私はミニファイルがあるのでそれを読むが、私は 'minファイルでどのように動作するのか分からない。
をルート設定を閉じていない、あなたのプロジェクトリソースのすべてのあなたのスクリプトファイル(角など)が含まれていましたか? – lealceldeiro
はい!私はすべて私のプロジェクトフォルダに入っています –
私は縮小されたファイルで多くのプロジェクトを行っていて、それは完全に機能しているのでどちらか分かりません。 – lealceldeiro