0

我正在使用保存新对象

    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()

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

4

1 回答 1

2

您已经在new_document.

于 2012-10-04T07:24:50.463 回答