最佳答案
如何获得一个表的所有 id/主键的列表:
class Blog(models.Model)
title = models.CharField()
body = models.CharField()
author = models.ForeignKey(Author)
assume the field 作者 is an Author object. I want to get all the ids of Blog where author=author
我知道我可以利用
blogs = Blog.objects.filter(author=author)
并获得所有的博客对象在一个列表形式,但如何获得列表 IDS/PK?类似于“从博客中选择 id,其中 Author = Author”