尝试从 Python 移植一段代码:
my_input = "this&is£some text"
encoded_input = urllib.quote_plus(str(my_input))
...到 JavaScript:
var my_input = "this&is£some text";
encoded_input = encodeURIComponent(my_input);
细微的区别是urllib.quote_plus()
将空格转换为+
而不是%20
(link)。只是想知道是否有人可以提供任何想法。目前正在处理这个......
var my_input = "this&is£some text";
encoded_input = encodeURIComponent(my_input).replace(/%20/g,'+');