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()会将空格转换为(link)而不是(link).
只是想知道是否有人可以提供任何想法.
目前正在与…
var my_input = "this&is£some text";
encoded_input = encodeURIComponent(my_input).replace(/%20/g,'+');
最佳答案
在Python代码中使用
原文链接:https://www.f2er.com/js/429753.htmlurllib.quote()
而不是quote_plus().如果更改Python代码不是解决方案,那么您选择替换是最佳方法(reference,second paragraph in Description).