从 extra_context 打印值

发布于 2024-11-08 11:39:48 字数 310 浏览 0 评论 0原文

如何打印模板中extra_context中的值

def getgeneric(request, page=0, paginate_by=20, **kwargs):
    page_size = 1
    return list_detail.object_list(
    request,
    queryset=Post.objects.published(),
    paginate_by=page_size,
    page=page,
    extra_context={'my' : 1},
    **kwargs
  )

How to print the values in extra_context in the template

def getgeneric(request, page=0, paginate_by=20, **kwargs):
    page_size = 1
    return list_detail.object_list(
    request,
    queryset=Post.objects.published(),
    paginate_by=page_size,
    page=page,
    extra_context={'my' : 1},
    **kwargs
  )

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

七颜 2024-11-15 11:39:49

http:// docs.djangoproject.com/en/1.3/ref/generic-views/#django-views-generic-list-detail-object-list

{{ extra_context.my }}

更新

我错了。

urls.py

from django.conf.urls.defaults import *

from t1.models import T

urlpatterns = patterns('',
    (r'^

与模板:t1/templates/t1/t_list.html

{{ my }}
<hr>
{{ extra_context.my }}

返回

1
<hr>
, 'django.views.generic.list_detail.object_list', { 'queryset': T.objects.all(), 'extra_context': { 'my':1 } }) )

与模板:t1/templates/t1/t_list.html

返回

http://docs.djangoproject.com/en/1.3/ref/generic-views/#django-views-generic-list-detail-object-list

{{ extra_context.my }}

UPDATE

I was wrong.

urls.py

from django.conf.urls.defaults import *

from t1.models import T

urlpatterns = patterns('',
    (r'^

with template: t1/templates/t1/t_list.html

{{ my }}
<hr>
{{ extra_context.my }}

return

1
<hr>
, 'django.views.generic.list_detail.object_list', { 'queryset': T.objects.all(), 'extra_context': { 'my':1 } }) )

with template: t1/templates/t1/t_list.html

return

他夏了夏天 2024-11-15 11:39:48

与通常的上下文对象相同。在您的情况下,它可以通过 my 访问

Same as usual context object. In your case it will be accessible by my

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文