gpt4 book ai didi

javascript - ember 转换 ajax 查询字符串

转载 作者:行者123 更新时间:2023-12-03 11:53:28 25 4
gpt4 key购买 nike

我正在使用 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 这样做吗?谢谢!

最佳答案

Ember 在字符串 'createdAt+asc' 上运行 encodeURIComponent

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

关于javascript - ember 转换 ajax 查询字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25710788/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com