我有一个这样的工厂:
app.factory('AccordDepartement', function($resource, HttpCache) {
return $resource('mocks/departements.json', {}, {
query: {
isArray: true,
method:'GET',
cache: HttpCache
},
metropole: {
isArray: true,
method:'GET',
params: {metropole:true},
cache: HttpCache
}
});
});
我在这样的服务中使用它:
AccordDepartement.metropole(function (data) {
console.log(data);
});
但问题是参数似乎被忽略了。
是因为我的 url 是一个 json 文件吗?或者我在这里错过了一些重要的事情?