如何将用 HTML 编写的非表单按钮或链接连接到 Django 中的 python 代码?具体来说,假设我在 HTML 中有一个使用 href="/some-link" 重定向页面的按钮。例如,当按下这样的按钮时,我如何在 Django 中将特定信息保存到会话(即保存按下哪个按钮)?
基本上,我想在views.py中做类似以下的事情:
if request.POST['form-type'] == u"purchase-button":
# save some info before redirecting the page
request.session['some-variable'] = 'the-purchase-button-was-pressed'
return redirect('some-link')
...除了这不是表格,所以我实际上不能这样做。
我是否以某种方式修改了以下 HTML?
<a href="/some-link">Purchase</a>
总的来说,我对 Django 和 Web 开发有点陌生,所以任何帮助都将不胜感激。
(基本上,我有以下链接中提出的确切问题,但我对答案并不满意:Django: How to trigger a session 'save' of form data when click a non-submit link)
编辑:
我最终使用了一个空白表单,如下所示,它让我可以参考下面的 python 代码中按下了哪个按钮,而无需用户实际填写信息。
在 HTML 中:
<form id="purchase" action="" method="post" name="purchase">
{% csrf_token %}
<input type="hidden" name="form-type" value="purchase" /> <!-- set type -->
<input type="hidden" name="form-id" value="{{ item.id }}" /> <!-- set item ID -->
<button name="purchase" type="submit" id="purchase-submit" data-submit="...Sending">Purchase</button>
</form>
在views.py中:
if request.POST['form-type'] == u"purchase":
# this allows me to call the corresponding item by its ID
desired_item = StoreItem.objects.get(id=str(request.POST['form-id']))
# this saves information about the desired item
request.session['item_name'] = str(desired_item.title)
request.session['item_id'] = str(request.POST['form-id'])
request.session['amount'] = str(desired_item.price)
return redirect('shipping')
这允许我从按钮获取信息并在views.py 中使用它,即使用户没有输入任何其他信息。