假设我有一个模型对象。
print (dir(table))
['...', 'col1', 'col2', '...']
# this will output column 1 value
print (table.col1)
我想动态地做,例如:
col = 'col1'
table.col
谢谢
假设我有一个模型对象。
print (dir(table))
['...', 'col1', 'col2', '...']
# this will output column 1 value
print (table.col1)
我想动态地做,例如:
col = 'col1'
table.col
谢谢