Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不知道,在 Django 中用哪种方式来做这样的事情:
autors = Autor.objects.all().filter(book.autor=<value>)
请问有人能睁开我的眼睛吗?
感谢您的每一个帮助!
伟大的
关于查询集过滤器的文档绝对可以帮助您
autors = Autor.objects.filter(book__autor=<value>)
您将使用__基于外键属性进行过滤。
__