如何在Django中保存之后才能获取对象?

时间:2012-10-04 04:48:01

标签: python django

我正在使用

保存新对象
    new_document = form.save(commit=False)
    new_document.object_id = int(self.kwargs['pk'])
    new_document.content_type = ContentType.objects.get_for_model(self.target_model)
    # Set the document category
    new_document.category = self.get_document_category()
    new_document.save()

现在想知道的是,在保存对象后,如何获取对象的主键和其他属性?

1 个答案:

答案 0 :(得分:2)

您已在new_document中拥有该对象。