#Djangoでdecimalを使いたいのですが以下のエラーが消えません。"from decimal import Decimal"等もやってみたのですが同じです。NameError: name 'DecimalField' is not defined
models.py
python
1from decimal import Decimal 2 3edaniku_jyuryo = DecimalField(verbose_name='枝肉重量', max_digits=6, decimal_places=1)
Django使ってないので分からないですが少なくとも
from decimal import Decimal
はDjangoではなく普通のPythonでDecimalを使うためのImportではないですか。
「NameError: name 'DecimalField' is not defined」は「DevimalField」が定義されてないので使えない
ってことなので
回答1件
あなたの回答
tips
プレビュー