我希望有这样的东西,其中上下文来自单个视图中使用的多个模型。这怎么可能?
def productpage(request, product_image_id):
product = get_object_or_404(Product, pk=product_image_id)
image = get_object_or_404(Image, pk=product_image_id)
return render(request, 'polls/productpage.html', {'product': product}, {'image':image})
此代码无效,但代表了我要做的事情
答案 0 :(得分:5)
你几乎做对了。只需改变
return render(request, 'polls/productpage.html', {'product': product}, {'image':image})
到
return render(request, 'polls/productpage.html', {'product': product, 'image':image})