这是我的模板代码
<t t-name="add_product" owl="1">
<t t-foreach="productList" t-as="product">
<!-- code to show products -->
</t>
</t>
当用户单击按钮时,我需要此模板在某些 div 标签内呈现
我试过下面的东西
QWeb.render('add_product', {'productList': productList});
这不起作用,因为模板是猫头鹰类型。
所以我试图找到如何渲染 owl 模板并找到下面的文档,但这对我没有帮助。
https://github.com/odoo/owl/blob/master/doc/reference/qweb_engine.md
任何帮助都非常感谢。
谢谢。