How to combine two or more querysets in a Django view?

后端 未结 13 2427
猫巷女王i
猫巷女王i 2020-11-21 22:40

I am trying to build the search for a Django site I am building, and in that search, I am searching in 3 different models. And to get pagination on the search result list, I

13条回答
  •  忘了有多久
    2020-11-21 23:12

    This will do the work without using any other libs

    result_list = list(page_list) + list(article_list) + list(post_list)
    

提交回复
热议问题