Django版本号:1.11.15 django中ajax请求报错:You called this URL via POST, but the URL doesn't end in a slash and you have APPEND_SLASH set. Django can't redirect to the slash URL while maintaining POST data. 将from的action地址改为/结尾的就可以了或者修改settings:APPEND_SLASH=Fa…
RuntimeError at /login You called this URL via POST, but the URL doesn't end in a slash and you have APPEND_SLASH set. Django can't redirect to the slash URL while maintaining POST data. Change your form to point to 127.0.0.1:8009/login/ (note the tr…
SyntaxError at /blog/ news/story Non-ASCII character , but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details (views.py, line 42) 当使用中文时会报错: def introduce(req): return HttpResponse("<h1>ok你</h1>") 其解决方法是:在文件前面…
redis使用连接池报错解决redis使用十几小时就一直报异常 redis.clients.jedis.exceptions.JedisConnectionException: Could not get a resource from the pool at redis.clients.util.Pool.getResource(Pool.java:22) at com.derbysoft.jredis.longkeytest.BorrowObject.run(BorrowObject.jav…