django:处理编码后的请求
我正在从客户端向应用程序发送 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您在打印
idea
时遇到错误。试试这个:这很可能是因为 UnicodeDecodeError。
You are getting an error while printing
idea
. Try this:This is most probably because of a UnicodeDecodeError.