gpt4 book ai didi

python - Django 最喜欢/比较的功能

转载 作者:太空宇宙 更新时间:2023-11-03 15:01:22 28 4
gpt4 key购买 nike

只是想知道 session 是否可用于在我的 Django 应用程序上创建两个产品的快速比较 View 。我正在列出待售商品,并希望用户能够“喜欢”多个商品,然后有一个新 View 来比较所选产品。有什么想法吗?

谢谢

最佳答案

当然,只需将列表产品分配给 session 变量即可。

然后将产品列表分配给模板,它可能看起来像这样:

<table>
<tr>
<td></td>
{% for product in products %}
<th>{{ product.title }}</th>
{% endfor %}
</tr>
<tr>
<th>Feature 1</th>
{% for product in products %}
<td>{{ product.feature1 }}</td>
{% endfor %}
</tr>
<tr>
<th>Feature 2</th>
{% for product in products %}
<td>{{ product.feature2 }}</td>
{% endfor %}
</tr>
</table>

关于python - Django 最喜欢/比较的功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45068068/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com