django
krista2009
这个作者很懒,什么都没留下…
展开
-
403-In general, this can occur when there is a genuine Cross Site Request Forgery, or whe
解决办法:在django1.4里,就必须按照提示的步骤来:1,在view里面,强制使用RequestContext 代替Context。示例如下:from django.template import RequestContext 视图返回要这样: return render_to_response('index.html', {转载 2015-01-31 06:02:32 · 1252 阅读 · 0 评论 -
django提交表单提示"You called this URL via POST, but the URL doesn't end in a slash and you have APPEND_SL
原因:表单action字段没有以 '/' 结尾讲action 修改为 action="/a/b/"即可修复原创 2015-01-31 05:57:23 · 18069 阅读 · 8 评论 -
Python 2.7.6的bug:ctype = ctype.encode(default_encoding) # omit in 3.x!
解决方法:修改python2.7.6安装目录下的mimetypes.py:注释掉enum_types方法里面的#try: #ctype = ctype.encode(default_encoding) # omit in 3.x!#except UnicodeEncodeError: #pass再删除mimetypes.pyc文件原创 2015-03-18 10:39:42 · 1316 阅读 · 1 评论