以下是我的views.py文件
def view_approval(request):
utype = request.POST.get('butn')
print utype
if utype == 'APP':
#certain set of funtions
if utype == 'SRC':
#certain set of funtions
else:
#certain set of funtions
HTML文件:
<form name="feedback22" action="{% url 'view_approval' %}" method="post">
{% csrf_token %}
<input id="bdyBtn" type="button" name="butn" value="APP" data-toggle="modal" data-target="#appModal" >
<input id="bdyBtn" type="button" name="butn" value="SRC" data-toggle="modal" data-target="#srcModal" >
</form>
我的HTML页面中有两个模态,用于上传两个Excel工作表。所以我创建了一个名为view_approval
的Django视图,并将代码放在其中。根据单击的输入按钮执行代码。但问题是,输入按钮的值未到达视图。
当我在视图中使用打印打印值时,它显示值“无”
提前致谢!!