Django如何更改IntegerRangeField的边界值

时间:2017-05-04 16:48:39

标签: python django postgresql psycopg2

我的模型包含 IntegerRangeField ,它会返回数据,例如 NumericRange(1992,1997,' [将对象添加到数据库后,') 。我需要第二个范围选项也包含在其中,因此边界应该像' []' 。 我在psycopg2 documentation寻找解决方案,但不幸的是没有找到答案。

请帮忙!提前谢谢。

我当前的 models.py

from django.contrib.postgres.fields import IntegerRangeField
from django.contrib.postgres.validators import RangeMinValueValidator, RangeMaxValueValidator
from django.core.validators import MinValueValidator, MaxValueValidator

from django.db import models
from datetime import datetime


class Bancnote(models.Model):

    Dollar= 'Dollar'
    Euro= 'Euro'

    TYPE_CHOICES = (
        (Dollar, 'Dollar'),
        (Euro, 'Euro')
    )

    type = models.CharField(max_length=11, choices=TYPE_CHOICES, default=Dollar)
    par = models.PositiveIntegerField()
    year = IntegerRangeField()
    size = models.CharField(max_length=7)
    sign = models.TextField(max_length=250)
    desc = models.TextField(max_length=500)
    image = models.ImageField(upload_to='bons_images')

    def __str__(self):
        return str(self.par) + ' ' + self.type + ' ' + str(self.year.lower) + '-' + str(self.year.upper)

1 个答案:

答案 0 :(得分:3)

官方documentation说:

  

无论保存数据时指定的界限如何,PostgreSQL   始终以包含下部的规范形式返回范围   限制并排除上限;那是[)。

所以我担心你无法真正改变这一点。但是,您可以照常存储数据:

from psycopg2.extras import NumericRange

Bancnote.objects.create(
    # specify other fields
    year=NumericRange(1992, 1997, bounds='[]')
)
# assuming the object we created is with id=1
bancnote = Bancnote.objects.get(id=1)
print(bancnote.year) # NumericRange(1992, 1998, '[)')

我想你这样做。这不是一个帮助,但这就是我所能做出的贡献。