如何设置flask返回来的dataframe的样式
时间: 2024-05-02 14:19:18 浏览: 69
flask-pandas-dataframe:Flask Pandas Dataframe-开源示例| 应用种子
可以使用pandas的style功能对dataframe进行样式设置,例如:
```python
from flask import jsonify
import pandas as pd
# dataframe为待返回的数据
df = pd.read_csv('file.csv')
# 对dataframe进行样式设置,以html格式返回
styled_df = df.style.set_properties(**{'text-align': 'center'}).set_table_styles([{'selector': 'th', 'props': [('text-align', 'center')]}])
html = styled_df.render()
# 将html作为json返回
return jsonify({'data': html})
```
这样返回的dataframe就会根据设置的样式进行渲染。
阅读全文