我正在使用 Wagtail 流场来允许用户上传和链接到编辑器界面中的文档。最初,我尝试使用文档中引用的外键以及我见过的所有其他示例。运行 wagtail 文档没有属性“设置名称”的迁移时,我一直收到错误消息。所以我决定不使用外键,因为这些文档对于我们的目的不一定需要以一对多的关系关联。因此,在我的模型中,我没有对使用 DocumentChooserBlocks 的所有字段使用外键,并且一切似乎都运行良好。我是否误解了“外键”并犯了错误(或练习了糟糕的数据库设计)。这是我的工作模型:
class AgendaPage(Page):
author= models.CharField(max_length=255)
date = models.DateField('Post date')
mtg_date = models.DateField(default=datetime.date.today)
mtg_time = models.CharField(max_length=255, default ='10:00 AM')
full_video_url-models.CharField(required =False)
###full_audio = DocumentChooserBlock(required=False)
###mtg_transcript = DocumentChooserBlock(required=False)
])
agenda = StreamField([
('agenda_item', blocks.StreamBlock([
('item_title', blocks.TextBlock()),
('item_text', blocks.TextBlock()),
('mtg_doc', blocks.StructBlock([
('mtg_doc_upload', DocumentChooserBlock(required=True)),
('submitted_late', blocks.BooleanBlock(required=False, help_text='Submitted Late')),
('heldover', blocks.BooleanBlock(required=False, help_text='Held Over')),
('heldover_from', blocks.DateBlock(required=False, help_text="Held Over From")),
])),
('item_audio', DocumentChooserBlock(required=False)),
]))
])
content_panels = Page.content_panels + [
FieldPanel('author'),
FieldPanel('date'),
FieldPanel('mtg_date'),
FieldPanel('mtg_time'),
StreamFieldPanel('agenda'),
]
此外,在模型中的两条注释掉的行中,我试图有一个不在流域内的 DocumentChooserBlock(没有外键)我知道这种语法可能是错误的,正如我看到的所有示例一样,在模型定义,然后在面板定义中引用 DocumentChooser Panel。是否可以(或建议)在没有外键的情况下做到这一点?