我在从片段中获取值时遇到了一些麻烦,我使用片段选择器块将其包含到流场中。
生物片段:
@register_snippet
class BioSnippet(models.Model):
name = models.CharField(max_length=200, null=True)
job_title = models.CharField(max_length=200, null=True, blank=True)
bio = RichTextField(blank=True)
image = models.ForeignKey(
'wagtailimages.Image',
null=True,
blank=True,
on_delete=models.SET_NULL,
related_name='+',
verbose_name='Bio Image'
)
contact_email = models.CharField(max_length=50, null=True, blank=True)
contact_phone = models.CharField(max_length=50, null=True, blank=True)
panels = [
FieldPanel('name'),
FieldPanel('job_title'),
FieldPanel('bio'),
ImageChooserPanel('image'),
FieldPanel('contact_email'),
FieldPanel('contact_phone'),
]
def __str__(self):
return self.name
class Meta:
ordering = ['name',]
生物流场定义:
class BioInline(StructBlock):
bio = SnippetChooserBlock(BioSnippet)
class BioBlock(StructBlock):
overall_title = CharBlock(required=False)
bios = ListBlock(BioInline())
这一切都有效,但是当我进入模板时,我似乎无法访问片段的值
{% for b in child.value.bios %}
{{ b }}
<hr>
{{ b.name }}
{% endfor %}
{{ b }} 标签输出:
bio
Sales Team
但是 {{ b.name }} 什么也不输出。{{ b.values.name }} 或我能猜到的任何其他排列也没有。我怀疑这些值并没有被拉低。