我在处理自定义表单数据时遇到问题...
<input type="text" name="client[]" value="client1" />
<input type="text" name="address[]" value="address1" />
<input type="text" name="post[]" value="post1" />
...
<input type="text" name="client[]" value="clientn" />
<input type="text" name="address[]" value="addressn" />
<input type="text" name="post[]" value="postn" />
...(这重复了几次...)
如果我做
request.POST.getlist('client[]')
request.POST.getlist('address[]')
request.POST.getlist('post[]')
我明白了
{u'client:[client1,client2,clientn,...]}
{u'address:[address1,address2,addressn,...]}
{u'post:[post1,post2,postn,...]}
但我需要这样的东西
{
{0:{client1,address1,post1}}
{1:{client2,address2,post2}}
{2:{client3,address3,post3}}
...
}
这样我就可以将这些数据保存到模型中。这可能是非常基本的,但我遇到了问题。
谢谢!