后台添加试题时编辑器里用了audio,前台不支持html,好尴尬,显示成这样
然而我想让他支持html标签,直接显示成这样
,求大神帮忙!
前台显示代码
3
2.0分
后台代码
{{ item.seq|default(”) }}
{{ item.score|default(item.question.score) }}{{‘分’|trans}}
{% if item.questiontype == ‘fill’ %}
{{ item.question.stem|fill_question_stem_html|bbcode2html|raw|nl2br }}
{% include ‘topxiawebbundle:attachment/widget:list.html.twig’ with {targettype:’question.stem’, targetid:item.question.id|default(null) } %}
{% else %}
{{ item.question.stem|bbcode2html|raw|nl2br }}
{% include ‘topxiawebbundle:attachment/widget:list.html.twig’ with {targettype:’question.stem’, targetid:item.question.id|default(null) } %}
{% endif %}
回复讨论(解决方案)
html_entity_decode()
用这个转换下
html_entity_decode()
用这个转换下
大神,这个函数怎么用 能帮我写一下代码么
分全给你
3
2.0分