由于运行经典 ASP 的服务器的限制,我的服务必须使用查询字符串:
angular
.module('myServices', ['ng', 'ngResource'])
.factory('Item', ['$resource',
function ($resource) {
return $resource('/api/?p=item/:id');
}]);
我想向它添加额外的查询字符串参数:
Item.query({test: 123}, on_success, on_error);
但生成的网址是
/api/?p=item?test=123
显然有一个错误,但如何解决它?