<input type="checkbox" name="chk" value="1">
<input type="checkbox" name="chk" value="1">
<input type="checkbox" name="chk" value="1">
<input type="checkbox" name="chk" value="1">
在django代码中获取name=chk的复选框
values=request.POST.getlist(‘chk‘)
{--得到的结果形式如下
[‘1‘,‘2‘]
django获取多个checkbox复选框post的数组数据的代码
原文:https://blog.51cto.com/14534787/2436106