django:处理编码后的请求

发布于 2024-08-22 03:28:17 字数 517 浏览 3 评论 0原文

我正在从客户端向应用程序发送 POST 请求。在服务器端,它是这样处理的:

def report(request):

if request.method == "POST":
    dict = request.POST
    idea = dict["idea"]
    print idea
    return HttpResponse("Success")

如果 idea =“binding”(或任何英语单词),我得到 http 200 OK,

但另一方面,如果 idea =“связка”(俄语单词),我得到 500 Error

你可以吗建议一种解决问题的方法?


后字典示例:

<QueryDict: {u'tournament': [u''], u'sidetomove': [u'true'], 
u'idea': [u'\u0441\u0432\u044f\u0437\u043a\u0430']}>

I am sending POST request from client to the application. On the server side it processed this way:

def report(request):

if request.method == "POST":
    dict = request.POST
    idea = dict["idea"]
    print idea
    return HttpResponse("Success")

If idea = "binding" (or any English word) I get http 200 OK

but on the other hand if idea = "связка" (Russian word), I am getting 500 Error

Could you please suggest a way to fix the issue?


Example of post dictionary:

<QueryDict: {u'tournament': [u''], u'sidetomove': [u'true'], 
u'idea': [u'\u0441\u0432\u044f\u0437\u043a\u0430']}>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

尘曦 2024-08-29 03:28:17

您在打印 idea 时遇到错误。试试这个:

print repr(idea)

这很可能是因为 UnicodeDecodeError。

You are getting an error while printing idea. Try this:

print repr(idea)

This is most probably because of a UnicodeDecodeError.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文