如何从数据库加载通用视图的 template_name?

发布于 2024-09-13 06:37:46 字数 376 浏览 2 评论 0原文

我有一个具有 template_name 字段的模型,并且有一个通用视图:

url(r'^/post/(?P<slug>[a-zA-Z0-9_.-]+)$', 'django.views.generic.list_detail.object_detail', {
        "template_object_name" : "post",
        'template_name': 'post_details.html'
    }, 'index')

How can I Replace the template_name from 'post_details.html' to the template_name inside post?

I have a model that has a template_name field and I have this generic view:

url(r'^/post/(?P<slug>[a-zA-Z0-9_.-]+)

How can I replace the template_name from 'post_details.html' to the template_name inside post?

, 'django.views.generic.list_detail.object_detail', { "template_object_name" : "post", 'template_name': 'post_details.html' }, 'index')

How can I replace the template_name from 'post_details.html' to the template_name inside post?

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

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

发布评论

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

评论(1

手心的海 2024-09-20 06:37:46

有一个 template_name_field 参数。顺便说一句,您缺少查询集参数。它看起来像这样:

url(r'^/post/(?P<slug>[a-zA-Z0-9_.-]+)
, 'django.views.generic.list_detail.object_detail', {
        "queryset": Post.objects.all(),
        "template_object_name" : "post",
        'template_name_field': 'template_name'
    }, 'index')

There is a template_name_field arg. By the way, your missing the queryset arg. It would look something like this:

url(r'^/post/(?P<slug>[a-zA-Z0-9_.-]+)
, 'django.views.generic.list_detail.object_detail', {
        "queryset": Post.objects.all(),
        "template_object_name" : "post",
        'template_name_field': 'template_name'
    }, 'index')
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文