0
私はAngular.jsを初めて使っています.... IDに基づいて、fullPostControllerは$ httpを使って必要なデータを取得しますが、postIdをコントローラにどのように渡す必要がありますか?
'use strict';
var myAPP = angular.module('myAPP', [ 'ngRoute' ]);
myAPP.config(['$routeProvider',
function (
$routeProvider
) {
$routeProvider.
when('/', {
templateUrl: 'pages/home.html',
controller: 'mainController'
}).
when('/post/:postId', {
templateUrl: 'pages/full_post.html',
controller: 'fullPostController'
}).
otherwise({
redirectTo: '/'
});
}]);
どのようにしてpostIdをfullPostControllerに渡しますか?