可以将mysql表中的列转换为html文档上的按钮吗?
我正在使用python(flask框架)和sqlalchemy。
我知道可以使用以下方法从mysql表中提取信息并将其显示在html表中:
<table class='product_navbar' id='product_navbar' name='product_navbar'>
{% for products in product_display %}
<tr>
<td> {{ products.product_serial_number}} </td>
</tr>
{% endfor %}
</table>
并且可以使用以下形式将按钮设置为数据库的搜索参数:
<form action='/ISN_search' method='post' id='main_form'>
<button name='action' type='submit' class='ISNsearch_button' id='All_Data' onclick='' value='All_Data'> <b>All Data</b></button>
</form>
是否有将这两个过程结合在一起的方法?因此,我有一个表,其中每一行都充当一个按钮,并且当添加新行时该表会自动更新。注意:我不打算将其用作一些令人困惑的循环。