这是我的代码:
<t t-set="cates" t-value="website.get_shop_category_of_product()"/>
<t t-if="cates">
<select id="categ" required="True" class="form-control">
<t t-foreach="cates" t-as="c">
<option t-attf-value="#{c.id}">
<t t-esc="c.name"/>
</option>
</t>
</select>
</t>
如何过滤产品类别?
get_shop_category_of_product
功能是返回产品的所有网站类别。帮助我需要任何解决方案和想法。