作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
因此,如果我知道将模型数据序列化为 JSON 有多么困难,我永远不会使用 Django 的 DecimalField
选项。
长话短说,如何从 DecimalField
获取浮点值?
我的模型看起来像这样:
class DailyReport(models.Model):
earnings = models.DecimalField(max_digits=12, decimal_places=4)
def earnings_float(self):
return self.earnings.to_float()
to_float()
方法可用,那么我该怎么做呢?
class DailyReport(models.Model):
earnings = models.DecimalField(max_digits=12, decimal_places=4)
def earnings_float(self):
return float(self.earnings)
最佳答案
只需将 DecimalField 转换为浮点数:
def earnings_float(self):
return float(self.earnings)
关于django DecimalField - 如何将值检索为 float ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30602154/
我是一名优秀的程序员,十分优秀!