如何从Django中的表单数据获取按钮名称?

时间:2020-05-20 20:13:42

标签: python-3.x django-forms

我的表单中有两个按钮。这是我的表格代码:

<form id="benchmarkUpdate" enctype="" method="POST" action="createCompanyReportQuestionnaire" >
  {% csrf_token %}
  <button type="submit" id="btn-YES" class="btn btn-info text-left" name="benchmarkYes" value="YES"><strong>YES</strong></button>
  <button type="submit" id="btn-NO" class="btn btn-info float-right" name="benchmarkNo" value="NO"><strong>NO</strong></button>
</form>

我想知道使用哪个按钮在 views.py 文件中提交表单?或如何在 views.py 文件中获取按钮的值?

0 个答案:

没有答案