我有一个具有FloatRangeField
的模型
class Credit(models.Model):
interest_range = FloatRangeField('Interest', null=True, blank=True)
我有一个模型表格:
class CreditForm(forms.ModelForm):
interest_range = InclusiveFloatRangeField()
现在,我想指定2个固定的小数位(仅在UI中,数据库检查并不重要)
似乎
models.FloatRangeField
不支持decimal_places
。而且我在django文档中找不到任何示例为小部件指定FloatRangeField
的小数位。Django版本:2.2
最佳答案
class LenderProfile(models.Model):
interest_range = DecimalField('Interest',decimal_places=2, null=True, blank=True)
在模型上有DecimalField的地方,您可以选择小数位数所需的小数字段吗?
关于python - Django为FloatRangeField指定小数位,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/56326855/