Giter VIP home page Giter VIP logo

Comments (10)

xjpro avatar xjpro commented on July 24, 2024

I think you could handle this case like this:

var User = sailsResource('user',
    { notifications: { method: 'GET', isArray: true, url: '/user/:id/notifications' }}
};
var userNotifications = User.notifications({id: userId});

from angular-resource-sails.

GuillaumeLeclerc avatar GuillaumeLeclerc commented on July 24, 2024

This is exactly my second example except I explicitly say where does userId comes from. It works great this way but I thought It would be great to pass the User object which contains the userId instead of the userId. Don't you think ?

from angular-resource-sails.

xjpro avatar xjpro commented on July 24, 2024

Could you do me.$notifications() (from your example)?

from angular-resource-sails.

GuillaumeLeclerc avatar GuillaumeLeclerc commented on July 24, 2024

no because notification is a GET request and according to the code (see the link in my first message) the method should be added to the resource and not to the instances of that resource.

from angular-resource-sails.

xjpro avatar xjpro commented on July 24, 2024

Ah, I see. So yeah you can either do two calls or you could modify sailsResource to attach all of the GET calls onto the instance. I believe ngResource supports the latter so we have precedence to do that.

from angular-resource-sails.

GuillaumeLeclerc avatar GuillaumeLeclerc commented on July 24, 2024

so get request would be attached to both right ?

from angular-resource-sails.

xjpro avatar xjpro commented on July 24, 2024

After reviewing $resource's docs it says

HTTP GET "class" actions: Resource.action([parameters], [success], [error])
non-GET "class" actions: Resource.action([parameters], postData, [success], [error])
non-GET instance actions: instance.$action([parameters], [success], [error])

So I guess GETs don't get added to the instance. How you do what you need to do with ngResource?

from angular-resource-sails.

GuillaumeLeclerc avatar GuillaumeLeclerc commented on July 24, 2024

You are right I never worked with $resource but I just found it convenient to do this this way because sails allow get requests on models. But I completely understand you if you want to follow the original $resource behavior

from angular-resource-sails.

xjpro avatar xjpro commented on July 24, 2024

We could certainly support it, but I'd like to follow Angular's $resource example where possible.

from angular-resource-sails.

GuillaumeLeclerc avatar GuillaumeLeclerc commented on July 24, 2024

As I said I understand your point. That's why I closed the issue

from angular-resource-sails.

Related Issues (17)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.