跳至内容
菜单
此问题已终结
1 回复
3873 查看


I send the data to the template body, and then I want to retrieve it. What do I need to do in order for the report to display 'Your Name' instead <p>Your Name<p>

#Data send 
data = {
'html': '<p>Your Name<p>'
}
return {
'type': 'ir.actions.report',
'report_name': 'unicoding_agreement.report_agreement',
'report_type': "qweb-pdf",
'data': data,
}
#Report template
<t t-call="web.external_layout">
<t
t-esc="data['html']"/>
</t>
形象
丢弃
最佳答案

t-esc will escape the HTML values, so instead use t-raw, does not HTML-escape its output and
useful to display separately constructed markup (e.g. from functions) or already sanitized user-provided markup.

形象
丢弃
相关帖文 回复 查看 活动
2
2月 19
4087
2
4月 25
6164
0
9月 22
3976
0
3月 22
6836
2
8月 25
528