Django 从其他字段推断一个字段
我目前有一个模型:
class Current(models.Model):
field1 = models.IntegerField()
field2 = models.IntegerField()
field3 = models.IntegerField()
我需要将 field3 设置为直接等于 field1 + field2,而不实际发送它。
django 中执行此操作的标准方法是什么?
PS:是的,我需要将 field3 与其他字段一起保存在数据库中。
I am currently having a model:
class Current(models.Model):
field1 = models.IntegerField()
field2 = models.IntegerField()
field3 = models.IntegerField()
I need to have field3 to be set directly equal to field1 + field2 without actually sending it.
What's the standard way in django to do this?
PS: Yes, I need to save field3 in the database alongwith the other fields.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
像这样的东西吗?但不确定为什么需要将其保存在数据库中。
Something like this? But not sure why this would need to be saved in the database.
您可以覆盖模型的 save() 方法。但为什么你需要保存 field3 呢?
You can overwrite the model's save() method. But why do you need to save field3 at all?