gpt4 book ai didi

python - 使用 webapp2 重定向到带有日语字符参数的页面

转载 作者:行者123 更新时间:2023-12-01 05:52:19 26 4
gpt4 key购买 nike

在我的网络应用程序中,我想从 POST 重定向到 GET 到另一个 URL,并将 GET 的参数设置为日语字符。

这有效:

self.redirect("SomePage?param=%s" % "value")

这会在重定向中引发编码错误:

self.redirect("SomePage?param=%s" % u"が")

有什么方法可以重定向并设置重定向页面的日语字符参数吗?

最佳答案

查询字符串应编码为“utf-8”和 percent-encoded :

>>> import urllib
>>> 'SomePage?%s' % urllib.urlencode({'param': u'が'.encode('utf-8')})
'SomePage?param=%E3%81%8C'

关于python - 使用 webapp2 重定向到带有日语字符参数的页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13730398/

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