gpt4 book ai didi

android - 使用 Python 进行 Unicode URL 编码/解码

转载 作者:搜寻专家 更新时间:2023-11-01 08:00:04 25 4
gpt4 key购买 nike

我有一个使用

URLEncoder.encode(S.getSongArtist(),"UTF-8")

对发布到 AppEngine python (2.7) 网络服务的 unicode 字符串进行编码。关于我使用的服务

urllib.unquote_plus(artist)

这没有给我正确的结果。我有这样的输入:

Marie+Lafor%C3%AAt

这是未被引用的

Marie Laforêt

如果我使用 javascript url 解码,例如:http://meyerweb.com/eric/tools/dencoder/我明白了

Marie Laforêt

正确的结果。

我试过用

urllib.unquote(artist).decode('utf-8') 

但这会产生异常。非常感谢任何提示。

编辑

紫杉醇在评论中给出了正确答案:

您要解码的内容已经解码。试试这个:

urllib.unquote_plus(artist.encode('utf-8')).decode('utf-8')

最佳答案

紫杉醇在评论中给出了正确答案:

您要解码的内容已经解码。试试这个:

urllib.unquote_plus(artist.encode('utf-8')).decode('utf-8')

关于android - 使用 Python 进行 Unicode URL 编码/解码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22472015/

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