i'd like to fetch a bunch of models via a collection by a list of model IDs. My problem is that i have to fetch dozens of models at once. I don't want to put dozens over douzens of IDs into the URL when firing a GET request.
I'm thinking about a POST request. But can this be done via Collection?
Maybe this way: https://gist.github.com/2953670
I know i'm raping a POST/create request. Alternatively i have jQuery.post() in mind.
What is the better way?
Thanks in advance, JW