webpy获得checkbox数组的值,webpycheckbox数组,webpy中获得选中ch


webpy中获得选中checkbox数组的值,不能直接实现,首先需要在html中这么写:

<input type="checkbox" name="codeId[]" value="1"/><input type="checkbox" name="codeId[]" value="5"/><input type="checkbox" name="codeId[]" value="2"/><input type="checkbox" name="codeId[]" value="3"/>

在服务器端获得传回去的数组值,需要这么写:

web.input(**{'codeId[]':[]}).get('codeId[]',None)

评论关闭