Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是我的代码:
<tr t-foreach="keyword" t-as="item"><td><t t-esc="item_value"/></td><td><input type="text" name=""/></td></tr>
所以在这里,文本框是动态生成的。
现在我想将文本框名称设置为生成的值
<t t-esc="item_value"/>
要将文本框名称设置为 item_value,您需要使用 t-att 属性:
<input type="text" t-att-name="item_value"/>
希望这可以帮助!