1. 首页
  2. 数据库
  3. 其它
  4. django获取from表单multiple select的value和id的方法

django获取from表单multiple select的value和id的方法

上传者: 2020-12-31 15:49:32上传 PDF文件 26.93KB 热度 14次
如下所示: <select id=host_list name=host_list multiple> {% for op in host_list %} {{ op.hostname }} {% endfor %} </select> 1、当需要获取选中的option的value时, 需设置为id=”{{ op.nid }}”, django Views获取选中的值为host_value=request.POST.getlist(“host_list”) 获取的为选中的option的value;
用户评论