django1.9使用django-pageination出現AttributeError錯誤處理

問題:

在django1.9使用django-pageination出現錯誤python

AttributeError: 'WSGIRequest' object has no attribute 'REQUEST'

緣由:

HttpRequest.REQUEST在django1.7中被棄用並使用更明確的HttpRequest.GETHttpRequest.POST來替代,而在django1.9中HttpRequest.REQUEST被移除了。git

處理:

打開python安裝目錄下的dist-packages/pagination/middleware.pygithub


django

return int(self.REQUEST['page'])

修改爲spa

 return int(self.POST['page'])


本文:http://my.oschina.net/soarwilldo/blog/626872.net

參考:
code

Use the more explicit GET and POST insteadblog

https://github.com/tschellenbach/Django-facebook/pull/564
ci

相關文章
相關標籤/搜索