I use hardloop loopbackjs at work to implement the API.
For the model, CatI determined the remote method, called him meow.
So what can I do:
GET /cats/{:id}/meow
The model Catbelongs to the model User.
Now I would like to do something like this:
GET /users/{:id}/cats/{:id}/meow
Does anyone know how to do this?
I already tried nestRemoting, which only works for nested "drawing" methods.
source
share