Django:使用<select multiple>and POST
我在模板中使用了类似的内容
<select multiple="multiple" name="services" id="services" size="5"> {% for service in services %}
<option value="{{service.id}}">{{service}}</option>
{% endfor %}
</select>
当我在Firebug或Django调试中查看POST数据时,我看到它仅发送一个值。我是在做错什么还是误解了一个概念?
回答:
request.POST.getlist('services')
以上是 Django:使用<select multiple>and POST 的全部内容, 来源链接: utcz.com/qa/419678.html