只是想知道是否可以使用Sessions在我的Django应用程序上创建两个产品的快速比较视图。我正在列出待售商品,并希望用户能够“喜欢”多件商品,然后有一个新视图来比较所选产品。有什么想法吗?
由于
答案 0 :(得分:1)
当然,只需将列表产品分配给会话变量。
然后将产品列表分配给模板,看起来像这样:
<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>