为了账号安全,请及时绑定邮箱和手机立即绑定

相当于JavaScript中的urllib.quote_plus()

相当于JavaScript中的urllib.quote_plus()

30秒到达战场 2021-03-09 13:31:34
尝试从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,'+');
查看完整描述

1 回答

?
HUX布斯

TA贡献1876条经验 获得超6个赞

在Python代码中使用urllib.quote()代替quote_plus()。如果更改Python代码是不是一个解决方案,你的替换的选择%20+是无论如何优选的方法

查看完整回答
反对 回复 2021-03-24
  • 1 回答
  • 0 关注
  • 158 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信