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 中开发一个应用程序,我想知道是否有一种方法可以将多个对象链接到 1 个父级。
例如,我有 -query_1-、-query_2-,我想将这些查询返回的对象放入一个 -parent_object- 以传递给模板,我可以像 {{ parent_object.query_1 这样在模板端访问它.field }},这是可能的还是有办法达到类似的效果?
from itertools import chain chained_qs = chain(qs1, qs2)