ここのドキュメントには、次のように書かれています。
url – {string} – action specific url override.
The url templating is supported just like for the resource-level urls.
この優れた機能を使用したいので、これを試しました:
angular.module("experience", ['ngResource'])
.factory('Experience', function ($resource, identity) {
return $resource("api/experiences/:id", {}, {
queryAll : {
method : 'GET',
url : 'api/companies/' + identity.id + '/experiences',
isArray : true
}
});
});
queryAll メソッドの URL を上書きしようとしていることがわかります。しかし、これは機能しません。クエリは引き続き URL api/experiences を送信します。これは本当にサポートされていますか、それとも何か間違っていますか? 助けてくれてありがとう。