我有以下论坛的基本 API:
POST /topics
(创建新主题)GET /topics
(获取所有主题)GET /topics/1
(获取 ID 为“1”的主题)
我想添加以下内容:
POST /topics/1
(添加对 ID 为“1”的主题的回复)
我尝试了以下代码(相关摘录),但没有奏效:
.controller('TopicReplyController', function ($scope, $routeParams, Topics) {
'use strict';
var topicId = Number($routeParams.topicId);
Topics.get({topicId: topicId}, function (res) {
$scope.topic = res;
});
$scope.postReply = function () {
var newPost = new Topics({
topicId: topicId
});
newPost.text = $scope.postText;
newPost.$save(); // Should post to /topics/whatever, not just /topics
};
})
.factory('Topics', function ($resource) {
'use strict';
return $resource('/topics/:topicId', {topicId: '@id'});
});
它只是向 发出请求/topics
,这是行不通的。
有什么想法可以让它发挥作用吗?