HOWTO get multiple value from the same name checkbox elements or radiobution elements

usually,we use
request.POST.get("aaa","") to fetch our vals,but when you want to get multiple checkbox's values with same name(CAUTION:not id,it name)
you need use this method
request.POST.getall("aaa","")
then will get all value

原文地址:https://www.cnblogs.com/lexus/p/1801927.html