django结合models.DecimalField与表单 - >错误:量化结果当前上下文的位数太多

时间:2010-01-12 19:04:49

标签: python django

我想将模型十进制字段与表单选择字段组合在一起。

模型中的字段:

sum = models.DecimalField(max_digits=2, decimal_places=2)

表格中的字段:

sum = forms.ChoiceField(choices=WORK_HOUR_CHOICES, label='Sum Working Hours', required=True)

选择:

WORK_HOUR_CHOICES = (
    (0, '0'),
    (0.5, '0.5'),
    (1, '1'),
    (1.5, '1.5'),
    (2, '2'),
    (2.5, '2.5')
)

但总是当我想存储一个小数位的值时,我得到了这个错误:

quantize result has too many digits for current context

当我保存0或1时,它可以正常工作。

怎么了?

1 个答案:

答案 0 :(得分:6)

这只是猜测,但我打赌你需要把Decimals放在那里:

WORK_HOUR_CHOICES = (
    (Decimal("0"), '0'),
    (Decimal("0.5"), '0.5'),
    (Decimal("1"), '1'),
    (Decimal("1.5"), '1.5'),
    (Decimal("2"), '2'),
    (Decimal("2.5"), '2.5')
)

您不能使用浮点常量初始化Decimal,您必须使用字符串。

>>> from decimal import Decimal
>>> Decimal(1.5)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "C:\software\Python25\lib\decimal.py", line 578, in __new__
    "First convert the float to a string")
TypeError: Cannot convert float to Decimal.  First convert the float to a string
>>> Decimal("1.5")
Decimal("1.5")