我在这里有点困惑。
我编写了一个名为的自定义模型字段,它从它的和方法PriceField
返回我的类的一个实例,它们都从字符串转换为.Price
from_db_value
to_python
Price
我的db_type
方法返回"string"
是因为我希望将字段的值表示为数据库中的字符串。
当我将包含 a 的模型添加PriceField
到数据库时,我得到InterfaceError: binding parameter 3
. sql语句的params
值为
[1,
'test',
'desc',
<utils.Price object at 0x7f159d9e6da0>,
'2019-02-22 00:39:31.634898',
'FS',
True,
True,
True,
True,
True,
'',
'']
我很确定这<utils.Price object at 0x7f159d9e6da0>
是我的问题 - 我如何将其转换为字符串以便数据库可以接受它?我已经__str__
为我的Price
班级PriceField
提供了方法。
这是我的 2 节课:
class Price():
units = None
value = 0
def __init__(self, units, value):
if not type(units) is PaymentUnit:
# TODO: Throw the right exception here
return;
self.units = units;
self.value = value;
def __str__(self):
return self.units.symbol + str(self.value)
class PriceField(models.Field):
units = '⧫'
value = 1
def __init__(self, value = 1, units='⧫', *args, **kwargs):
self.value = value;
self.units = units;
# Pass the values to the super class constructor
# Up to 16 digits, plus a decimal and up to 8 decimal
# digits (0.00000001 BTC is 1 satoshi)
kwargs['max_length'] = 24;
kwargs['help_text'] = 'Represents a price in a specific currency.';
kwargs['default'] = '⧫1'
super().__init__(*args, **kwargs)
def deconstruct(self):
name, path, args, kwargs = super().deconstruct()
del kwargs['max_length']
if self.units != '⧫':
kwargs['units'] = self.units
if self.value != 1:
kwargs['value'] = self.value
return name, path, args, kwargs
def db_type(self, connection):
return 'string'
def from_db_value(self, value, expression, connection):
if value is None:
return None
return parse_price(value);
def to_python(self, value):
if isinstance(value, Price):
return value
elif value is None:
return None
else:
return parse_price(value)
def __str__(self):
return "{0}{1}".format(self.units.symbol, self.value)