3

我有两个表单发送到模板,当我得到它们时,所有模型都被检索并保存,但最后一个模型获取所有其他模型并保存自己,它也不会保存自己。我在下面收到这样的错误。谁能帮帮我?

Exception Type:  TypeError
Exception Value:  int() argument must be a string or a number, not 'tuple'

我追踪了它,问题看起来只是表格中的一个问题,它从表格中看起来如何

class AForm(ModelForm):
    mentancy_fee = forms.IntegerField(required=False)

在这里他从模型中定义

class AgentLandLordContract(models.Model):
    mentancy_fee = models.IntegerField(default=0,blank=True,null = True)

那么为什么这个表单字段返回一个元组而不是一个它。我从表单中屏蔽了这个文件,一切都很好

4

1 回答 1

7

在表单中,我在字段末尾留了一个逗号,这使得表单输入到一个元组中,当我发现一切正常时

mentancy_fee = forms.IntegerField(required=False),
于 2013-02-05T19:36:19.797 回答