Re: How to access HttpRequest from urls.py in Django? or better way.
Sorry!
I using request.GET['category']
在 Jun 10, 2012,9:19 PM, Daniel Roseman 写道:
On Sunday, 10 June 2012 05:21:08 UTC+1, losingle wrote:
news_info_dict should be
news_info_dict = {
'queryset':News.published.filter(category=
request.category).all(),
'date_field': 'pub_date',
}
I couldn't find a way to access the HttpRequest (request) object
though... Or find the better way ...Your code doesn't set `request.category` anywhere anyway, so even if you could access request it wouldn't work.However, this can't be done. Instead you should use the generic class-based views, subclass the appropriate one and override `get_query_set` to access `self.kwargs['category']`. See the documentation:--DR.--
You received this message because you are subscribed to the Google Groups "Django users" group.
To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/x9V4EWUyV6kJ.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to django-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.
0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home