尝试从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,'+');
HUX布斯
相关分类