这是示例设置:
var editor = angular.module("editor",['ngResource']);
editor.factory("Provider",function($resource){
return $resource('/api/test/1').get();
})
function ctrl($scope,Provider){
$scope.sections = Provider;
}
我的问题是,在萤火虫中,我看到有两个 GET 请求被发送:一个在 /api/test/1,一个在 /api/test/1/。
有什么想法可能导致这种情况吗?