0
中讀取TypedChoiceField數據
我有一個FormView
需要ModelForm
。該型號有SmallIntegerField
。從表格
在我的FormView
中,我正嘗試使用Forms API讀取數據。 但是,這是行不通的
status = int(form.fields['status'])
我得到的,
int() argument must be a string, a bytes-like object or a number, not 'TypedChoiceField'