2

是否可以获取 django_tables2 表中的列列表

# tables.py
import django_tables2 as tables    

class MyTable(tables.Table):
    firstcol = tables.Column()
    secondcol = tables.Column()

然后使用一个函数...

 >>> MyTable.function_to_list_cols()
 ['firstcol', 'secondcol'] 
4

0 回答 0