很抱歉这不是编程问题,但当我试图反省我的班级对象时,这引起了我的注意。
我发现了这个
{'user_id': 1, '_state': <django.db.models.base.ModelState object at 0x10ac2a750>, 'id': 2, 'playlist_id': 8}
_state
和ModelState
的作用是什么?
答案 0 :(得分:26)
在Django源代码中,_state是在每个Model实例中定义的实例变量,它是ModelState
的一个实例,定义为:
class ModelState(object):
"""
A class for storing instance state
"""
def __init__(self, db=None):
self.db = db
# If true, uniqueness validation checks will consider this a new, as-yet-unsaved object.
# Necessary for correct validation of new instances of objects with explicit (non-auto) PKs.
# This impacts validation only; it has no effect on the actual save.
self.adding = True
所以基本上这个实例变量用于知道Model
实例是否已写入db
(知道Django支持多个数据库后端)并保持使用db
,此实例变量属性adding
在saving the model instance之后设置为false,并且主要用于(如上面代码中的注释)验证primary keys is unique。