当我尝试渲染包含HTML标记的字段标签时,在模板中,它被渲染为简单文本。
erotrotsity = forms.DecimalField(max_digits=7, decimal_places=3, label='Erot<sup>12</sup>', required=False, validators = [MinValueValidator(0)])
filter | safe和autoescape不起作用
答案 0 :(得分:1)
使用mark_safe()
:
<d:BasePage BackgroundImage="Image">
<ContentView>
<ContentView.Padding>
<OnPlatform x:TypeArguments="Thickness" iOS="0, 20, 0, 0"/>
</ContentView.Padding>
<ContentView.BackgroundColor>
<OnPlatform x:TypeArguments="Color" iOS="#CF2129"/>
</ContentView.BackgroundColor>
... Actual content ...
</ContentView>
</d:BasePage>