我在 wagtail 中创建博客帖子到其自己的内容页面的链接时遇到问题。在我的模型中,我有两个页面类,BlogPage 和 IndexPage。我的 BlogPage 类用于创建博客文章,IndexPage 类用于显示博客文章列表。
请参阅以下型号:
from django.db import models
from modelcluster.fields import ParentalKey
from wagtail.wagtailcore.models import Page, Orderable
from wagtail.wagtailcore.fields import RichTextField
from wagtail.wagtailadmin.edit_handlers import FieldPanel, MultiFieldPanel, InlinePanel
from wagtail.wagtailimages.edit_handlers import ImageChooserPanel
from wagtail.wagtailsearch import index
class IndexPage(Page):
intro = RichTextField(blank=True)
def child_pages(self):
return BlogPage.objects.live()
content_panels = Page.content_panels + [
FieldPanel('intro', classname='full'),
]
subpage_types = ['blog.BlogPage']
class BlogPage(Page):
date = models.DateField("Post date")
intro = models.CharField(max_length=250)
body = RichTextField(blank=True)
search_fields = Page.search_fields + (
index.SearchField('intro'),
index.SearchField('body'),
)
content_panels = Page.content_panels + [
FieldPanel('date'),
FieldPanel('intro'),
FieldPanel('body', classname="full")
]
我的挑战是我无法弄清楚如何将索引页面上的博客文章链接到它自己的页面。我是否需要创建一个单独的页面模型和 html 模板来实现这一点?或者解决这个问题的最佳方法是什么?