开发者

django save override question

开发者 https://www.devze.com 2023-02-15 15:29 出处:网络
I have a field in models that has primary_key=True. Now I want to override the save method and check if the object is created. How can I check it if I can\'t check self.id?开发者_Python百科check self.

I have a field in models that has primary_key=True. Now I want to override the save method and check if the object is created. How can I check it if I can't check self.id?开发者_Python百科


check self.pk instead of self.id

http://docs.djangoproject.com/en/dev/topics/db/queries/#the-pk-lookup-shortcut

0

精彩评论

暂无评论...
验证码 换一张
取 消