Django Shell 更新对象值
Django Shell update objects value
我想在 django 中将价格提高 30% shell。
models.py:
price = models.FloatField(null=True)
shell:
from product.models import Product
Product.objects.all().update(price=price*1.3)
错误:
NameError: name 'price' is not defined
您需要使用F表达式来引用数据库中的字段
https://docs.djangoproject.com/en/3.2/ref/models/expressions/#f-expressions
from django.db.models import F
from product.models import Product
Product.objects.all().update(price=F('price')*1.3)
我想在 django 中将价格提高 30% shell。
models.py:
price = models.FloatField(null=True)
shell:
from product.models import Product
Product.objects.all().update(price=price*1.3)
错误:
NameError: name 'price' is not defined
您需要使用F表达式来引用数据库中的字段 https://docs.djangoproject.com/en/3.2/ref/models/expressions/#f-expressions
from django.db.models import F
from product.models import Product
Product.objects.all().update(price=F('price')*1.3)