从模板

时间:2018-04-30 03:00:51

标签: python django django-views

我的html模板中有以下代码:

模板

<div class="submitbutton">
    <a href="{% url 'accounts:customerhomepage' %}" target="_blank" value="1">
         <button>
             View Demo
          </button>
    </a>
 </div>

我想将值1传递给将呈现页面的views.py中的函数。在视图中,我得到了以下代码:

Views.py

demo = request.GET.get('value')
print(demo)

打印结果为“无”。而不是&#39; 1&#39;。我不确定我的代码在哪里出错。

谢谢!

1 个答案:

答案 0 :(得分:1)

我认为您需要在查询字符串中包含“value”,如下所示:

<a href="{% url 'accounts:customerhomepage' %}?value=1" target="_blank">