state = fields.Selectioin([
('a', 'A'),
('b', 'B'),
('c', 'C'),
('d', 'D'),
])
读取当前状态的显示文本
state_str = dict(self.fields_get(allfields=['state'])['state']['selection'])[self.state]
输出结果为
当前选中的state显示文本 例:A
state = fields.Selectioin([
('a', 'A'),
('b', 'B'),
('c', 'C'),
('d', 'D'),
])
读取当前状态的显示文本
state_str = dict(self.fields_get(allfields=['state'])['state']['selection'])[self.state]
输出结果为
当前选中的state显示文本 例:A