我要说的是,我有以下法典:
obj = MyUser.objects.get(pk=1)
name = obj.name
age = obj.age
email = obj.email
phone = obj.phone
city = obj.city
因此,我有<编码>obj。 这个阵列是否含有关于我的“我的”物体的所有信息,还是只是一个参考点?
I m 有趣的是name = obj.name
首次向亚洲开发银行提出请求,
age = obj.age
向亚洲开发银行发出第二次请求,
email = obj.email
sent third request to DB,
phone = obj.phone
sent the fourth request to DB,
city = obj.city
向非行发出第五次请求
or there is only one request, when obj = MyUser.objects.get(pk=1)
.
这并不影响系统的业绩,因此,它是一个非常有趣的问题。
感谢!