[UnicodeEncodeError]:Django中解决URL中文解释乱码问题

Django中在使用HttpResponseRedirect的时候,跳转URL中如果存在中文,会报错:会报UnicodeEncodeError错误。

解决办法:
使用urlquote对URL进行编码

from django.utils.http import urlquote

return的时候在URL前加上urlquote

return HttpResponseRedirect(urlquote("/wiki/%s" % page.pagename))

上一篇:Silverlight调用本机exe程序


下一篇:android 常见死机问题--log分析