DecimalField 是一种模型字段,相当于数据库字段的属性 decimal(x,y)。在 Python 中用一个 Decimal 实例来表示,表现为一个固定精度的十进制数。它使用 DecimalValidator 验证输入。
语法:
field_name = models.DecimalField(max_digits=None, decimal_places=None, **options)
DecimalField 具有以下必需参数:
- DecimalField.max_digits
数字中允许的最大位数。请注意,此数字必须大于或等于 decimal_places。 - DecimalField.decimal_places
与数字一起存储的小数位数。
例如,要存储最高为 999.99 的数字,精度为小数点后 2 位,您可以使用:
models.DecimalField(..., max_digits=5, decimal_places=2)
以10位小数的精度存储大约10亿的数字:
models.DecimalField(..., max_digits=19, decimal_places=10)
DecimalField 示例
使用示例说明 DecimalField。假设一个名为 testproject 的项目,该项目有一个名叫 testapp 的应用。在 testapp 应用的 models.py 文件中输入以下代码:
from django.db import models
# Create your models here.
class TestModel(models.Model):
test_field = models.DecimalField(max_digits=5, decimal_places=2)
在 settings.py 文件的 INSTALLED_APPS 选项中增加 testapp:
# Application definition
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'testapp',
]
现在在终端执行 makemigrations 命令:
testapp 文件夹中将会出现一个名为 migrations 的文件夹,migrations 文件夹中有一个名为 0001_initial.py 的文件。
执行:
python manage.py migrate
最终会在表 testapp_testmodel 中,创建一个名为 test_field 的 DecimalField 字段。表名组成结构为:应用名_类名(如:testapp_testmodel)。
注意:尽管我们没有在 models 给表设置主键,但是 Django 会自动添加一个 id 作为主键。
DecimalField 用途
DecimalField 用于存储数据库中的 python datetime.date 实例,也可以在数据库中存储任何类型的十进制数。让我们尝试在上面创建的模型中存储一个十进制数。
修改 testapp 下的 admin.py :
from django.contrib import admin
# Register your models here.
# importing the model from testapp app
from testapp.models import TestModel
# importing datetime module
import decimal
# creating an instance of datetime.date
d = decimal.Decimal(9.53)
# creating an instance of TestModel
test_object = TestModel.objects.create(test_field = d)
test_object.save()
admin.site.register(TestModel)
在管理后台中检查,我们已经创建了一个 TestModel 实例。
内容为:
文章来源:https://www.toymoban.com/news/detail-406022.html
参考文档
[1].NaveenArora. DecimalField – Django Models[EB/OL]. [2022-10-27]. https://www.geeksforgeeks.org/decimalfield-django-models/.文章来源地址https://www.toymoban.com/news/detail-406022.html
到了这里,关于介绍 Django 的模型字段 DecimalField的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!