0

我正在使用 ember-model 并执行此请求App.Video.find({'sort':'createdAt+asc'});以获得排序的视频列表。所以它必须提出这个请求

http://localhost:1337/api/v1/videos?sort=createdAt+asc

但相反,它会这样做

http://localhost:1337/api/v1/videos?sort=createdAt%2Basc

并替换+%2B. 您有任何想法如何避免 ember 这样做吗?谢谢!

4

1 回答 1

1

EmberencodeURIComponent在字符串上运行'createdAt+asc'

尝试做App.Video.find({'sort':'createdAt asc'});(注意空格而不是+),看看是否适合你。

于 2014-09-07T16:10:25.533 回答