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)
ドキュメンテーション。