You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var CachedParents = $cachedResource('data', 'http://www.example.com/data/:_id', { _id: "@id"});
// gets an Array and tags it 'cached-parents'
var all = CachedParents.query({tag: 'cached-resource'})
ends up doing this
GET /data?tag=cached-resource
How can i tag to store the resulting Array, but not send the tag parameter in the request ?
The text was updated successfully, but these errors were encountered:
ends up doing this
GET /data?tag=cached-resource
How can i tag to store the resulting Array, but not send the tag parameter in the request ?
The text was updated successfully, but these errors were encountered: