django後臺獲取相同name名的數據

django後臺獲取相同name名的post數據
html:
<form method="post">
    <input type="text" name="keyword" value="11"/>
    <input type="text" name="keyword" value="22"/>
    <input type="text" name="keyword" value="33"/>
    <input type="submit" value="提交"/>
</form>
django後臺
keyword=dict(request.POST.iterlists())['keyword']

返回結果:html

[u'11', u'22', u'33']django

相關文章
相關標籤/搜索