如何使用 Flask 将 pandas df 值作为 hmtl 标签 id 传递

How to pass pandas df value as hmtl tag id with Flask

提问人:Esteban G. Gutierrez 提问时间:6/27/2023 更新时间:6/27/2023 访问量:18

问:

您好,我正在使用 flask 在 html 中呈现一个表,那么我如何将 df 中的票证 ID 作为 hmtl 标签 id 传递

方向差 :

成本 佣金 PNL系列 结果 累计总额
0 123 123 123 123 123 123
1 321 321 321 321 321 321

我目前的代码:

            <td id="ticket">
              {{row['ticket']}}
            </td>

但需要的是这样的:

            <td id={{row['ticket']}}>
              {{row['ticket']}}
            </td>
烧瓶 HTML 呈现

评论


答: 暂无答案