这是我的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]