Using ember-model, I am making a request like this:
App.Video.find({'sort':'createdAt+asc'});
to retrieve a sorted list of videos. This should result in the following request:
http://localhost:1337/api/v1/videos?sort=createdAt+asc
However, it is actually generating this URL instead:
http://localhost:1337/api/v1/videos?sort=createdAt%2Basc
where the plus sign +
is being replaced with %2B
. Any suggestions on how to prevent ember from doing this? Thank you!