因此,我尝试从帖子列表中获取单个“帖子”对象,但我不知道传递的params对象名称的名称。 这是细节后的组件 “严格使用”;
window.location.reload
在这里,我将postId传递给getPost方法。顺便说一句,这里的postId的值是有效的。
这是我的邮政服务。
angular.module('postDetail', ['ngRoute', 'postsService'])
.config(['$routeProvider', function($routeProvider) {
$routeProvider.when('/posts/:postId', {
templateUrl: 'post-detail/post-detail.template.html',
controller: 'PostDetailController'
});
}])
.controller('PostDetailController', ['$scope', '$http', 'postsService', '$routeParams', function($scope, $http, postsService, $routeParams) {
$scope.post = postsService.getPost($routeParams.postId);
}]);
但是这里的“ @postId”表达式为空,它试图获取帖子列表。如何引用传递的参数?
我的帖子详细信息模板
angular.
module('postsService', ['ngResource']).
factory('postsService', ['$resource',
function($resource) {
return $resource('https://jsonplaceholder.typicode.com/posts/:postId', {}, {
getPost: {
method: 'GET',
params: {postId: '@postId'}
}
});
}
]);
答案 0 :(得分:1)
代替:
$scope.post = postsService.getPost($routeParams.postId);
这样做:
$scope.post = postsService.getPost({
postId: $routeParams.postId
});
查看如何在the documentation中使用$resource
类方法的示例。