「ngRoute」の礼儀で、ngRoute.Byを使用する必要があります。特定のURLで特定のビューにユーザーをリダイレクトすることができます。 Plsはそれについていくつかの研究を行います。あなたのビューを解決し、問題をリダイレクトすると仮定しましょう。どのようにサーバー側からデータを取得するのですか?現時点では、サービスオブジェクトとファクトリオブジェクトを参照することをお勧めします。 お手伝いをしてください。
サンプルコード:
// create the module and name it exApp
// also include ngRoute for all our routing needs
var exApp= angular.module('exApp', ['ngRoute']);
// configure our routes
exApp.config(function($routeProvider) {
$routeProvider
// route for the home page
.when('/', {
templateUrl : 'pages/home.html',
controller : 'mainController'
})
// route for the about page
.when('/about', {
templateUrl : 'pages/about.html',
controller : 'aboutController'
})
// route for the contact page
.when('/contact', {
templateUrl : 'pages/contact.html',
controller : 'contactController'
});
});
// create the controller and inject Angular's $scope
exApp.controller('mainController', function($scope) {
// create a message to display in our view
$scope.message = 'Everyone come and see how good I look!';
});
exApp.controller('aboutController', function($scope) {
$scope.message = 'Look! I am an about page.';
});
exApp.controller('contactController', function($scope) {
$scope.message = 'Contact us! JK. This is just a demo.';
});
https://github.com/angular-ui/ui-router – pegla