Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有这个
area = forms.FloatField(required=False)
我希望人们不应该像我在max_lengthchar 字段中那样添加超过 20 个字符或数字
max_length
我不希望人们尝试在其中粘贴整个数字的文本文件
使用DecimalField而不是FloatField.
DecimalField
FloatField
area = forms.DecimalField(max_digits=20)
文档。