如何获得对象的某些属性?

时间:2019-05-27 10:46:38

标签: python django django-models

我正在使用Django框架进行编码,因此我陷入了这个问题:

usercomment = 'Test'
usercomments = json.dumps(usercomment)
data = {
    'date': '2019-02-06',
    'usercomments': usercomments,
    'totalminutes': '120',
    'searched': 'functionTest'
}

在这一行,我在数据库中创建条目。

response = self.client.post("/urlRegistration/", data=data, follow=True) 

但是当我想获取在数据库中创建的对象的唯一ID时,由于连接已关闭,我不能

myObject = Myobject.objects.filter(usercomment=usercomment)
uniqueid = myObject[0].uniqueid

可以帮我吗?

非常感谢您!

编辑:Python告诉了我这个:

cursor = self.connection.cursor()
psycopg2.InterfaceError: connection already closed

对于变量响应,我得到:<HttpResponse status_code=200, "application/json">

0 个答案:

没有答案