Django:从html表单获取列表

时间:2015-03-06 18:47:05

标签: python html django list

这是我的django代码

def postData(request):
    itemQuantity = request.POST.getlist('itemQuantity')
    print itemQuantity

以下是我的HTML代码

<form action="/test/data/" method="POST">
<input type="hidden" name="itemQuantity" id="" style="width:350px;" value="{{itemQuantity}}">
<center><input type="submit" style="background-color:#00B16A; padding: 4px; color: #FFF; font-weight: bold; border: 1px solid #999; margin-top:5px;" value="Login"></center>
</form>

这是我的输出

[u"[u'0', u'0', u'0', u'0', u'0', u'0', u'0', u'0', u'0', u'0', u'0', u'0', u'0', u'0', u'0', u'0', u'0', u'0', u'0', u'0', u'0', u'0', u'0', u'0', u'0', u'0', u'0', u'0', u'0', u'0', u'0', u'0', u'0', u'0', u'0', u'0', u'0', u'0', u'6']"]

预期产出

[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6]

0 个答案:

没有答案