Django IntegerRangeField错误绑定参数可能不受支持的类型

时间:2017-05-01 18:16:57

标签: python django python-3.x django-models

我试图在我的模型中使用年份字段替换year_from和year_to字段,但是在管理中添加新对象时会收到错误。

问题是“错误绑定参数4 - 可能不支持的类型。” 任何人都可以看一下并帮忙吗?提前谢谢!

models.py

from django.contrib.postgres.fields import IntegerRangeField
from django.core.validators import MinValueValidator, MaxValueValidator
from django.db import models


class Bancnote(models.Model):

    DOLLAR = 'Dollar'
    EURO = 'Euro'

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

    type = models.CharField(max_length=20, choices=TYPE_CHOICES, 
                            default=DOLLAR )
    par = models.PositiveIntegerField()
    year_from = models.PositiveIntegerField()
    year_to = models.PositiveIntegerField()
    year = IntegerRangeField()
    size = models.CharField(max_length=7)
    sign = models.CharField(max_length=20)
    desc = models.TextField(max_length=200)
    image = models.ImageField(upload_to='bons_images')

    def __str__(self):
        return str(self.par) + ' ' + self.type + ' ' + str(self.year_from) + 
                   '-' + str(self.year_to)

1 个答案:

答案 0 :(得分:0)

看起来IntegerRangeField是PostgreSQL特定的表单字段(IntegerRangeField)。如果您正在使用PostgreSQL,请告诉我们。