我是 django 的新手,作为一个学习应用程序,我正在构建一个费用记录应用程序。
在我的模型中,我有三个看起来像这样的类(为简洁起见,我稍微简化了它们):
class AbstractExpense(models.Model):
description = models.CharField(max_length=100)
amount = models.IntegerField()
category = models.ForeignKey('Category')
tags = models.ManyToManyField('Tag')
insert_date = models.DateTimeField(auto_now=True)
class Meta(object):
abstract = True
class Expense(AbstractExpense):
date = models.DateField('Date')
class RecurringExpense(AbstractExpense):
FREQUENCY_CHOICES = (('D', 'daily'),
('W', 'weekly'),
('M', 'monthly'),
('Y', 'yearly'))
start_date = models.DateField(blank=False)
end_date = models.DateField(blank=True, null=True)
last_check = models.DateField(blank=True, null=True)
frequency = models.CharField(blank=False, max_length=1, choices=FREQUENCY_CHOICES)
RecurringExpense
只是一个模板:当系统意识到插入经常性费用(例如:租金)的时间时,它应该获取模板中的信息并将它们复制到Expense
类的新实例中。以下是RecurringExpense
负责这项工作的方法的相关内容:
Expense(description=self.description,
amount=self.amount,
category=self.category,
# tags=self.tags,
date=expense_date).save()
以上工作完美无缺,但如果我取消注释该tags=self.tags
行,django 会抱怨并抛出以下错误:
Exception Type: TypeError
Exception Value: 'tags' is an invalid keyword argument for this function
Exception Location: <snip>/django/db/models/base.py in __init__, line 367
我知道我可以创建一个循环来解决这个问题,但我想知道是否有更优雅的方式可以让我一次执行相同的操作......