如何获得表格选择字段的值?

时间:2018-08-24 05:42:24

标签: python django

[{enter image description here Form._bound_fields_cache['limit'].field.choices[var][1]

我想从每个选择字段中获取[][1]这个值,如何获取它。

我如上所述尝试过

需要重复选择的地方,但我没有得到。

,并且需要在字典中附加值。

谢谢!

1 个答案:

答案 0 :(得分:1)

如果需要列表,则可以使用列表理解。 像这样的东西:

[choice[1] for choice in Form._bound_fields_cache['limit'].field.choices]

或更易于理解的for循环:

choice_values = list()
for choice in Form._bound_fields_cache['limit'].field.choices:
    choice_values.append(choice[1])