我希望当价格和数量以total = price * quantity的形式输入时自动填充total字段。
class calculation(models.Model):
price=models.IntegerField()
quantity=models.IntegerField()
total=models.IntegerField()
在forms.py
中 class calForn(forms.ModelForm):
class meta:
model=calculations
fields='__all__'