django中自定义对象管理器

自定义对象管理器

1.自定义对象管理器继承自Manager类(from django.db.models import Manager)
2.在自定义管理器中实现自己的方法:
class CakeManager(Manager): #自定义对象管理器
	def create_cake(self, name, price, color):
		cake = self.model()
		cake.name = name
		cake.price = price
		cake.color = color
		cake.save()
		return cake
class Cake(models.Model):
	name = models.CharField(max_length=20)
	price = models.FloatField()
	color = models.CharField(max_length=20)
	# 关联自定义对象管理器
	cakemanager = CakeManager()

你可能感兴趣的:(python)