在django1.9使用django-pageination出現錯誤python
AttributeError: 'WSGIRequest' object has no attribute 'REQUEST'
HttpRequest.
REQUEST
在django1.7中被棄用並使用更明確的HttpRequest.
GET
和HttpRequest.
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