設定例は次のとおりです。
var editor = angular.module("editor",['ngResource']);
editor.factory("Provider",function($resource){
return $resource('/api/test/1').get();
})
function ctrl($scope,Provider){
$scope.sections = Provider;
}
私の問題は、firebug で 2 つの GET リクエストが送信されていることです。1 つは /api/test/1 で、もう 1 つは /api/test/1/ です。
これを引き起こしている可能性のあるアイデアはありますか?