烧瓶表 因为编写HTML很麻烦,并且您的所有表都基本相同。 安装 pip install flask-table 快速开始 # import things from flask_table import Table , Col # Declare your table class ItemTable ( Table ): name = Col ( 'Name' ) description = Col ( 'Description' ) # Get some objects class Item ( object ): def __init__ ( self , name