如何将Django变量中的多选下拉列表中的选定选项保存为列表?有什么要从.html导入到.py吗?
答案 0 :(得分:0)
要从多个下拉列表中获取值,方法是:
模板(myPage.html):
<select multiple="multiple" name="services" id="services" size="5">
{% for service in services %}
<option value="{{ service.pk }}">{{ service.name }}</option>
{% endfor %}
</select>
观看次数(views.py):
myServices = request.POST.getlist('services')
祝你好运.. !!