gpt4 book ai didi

python - django请求getlist方法: does this preserve the sequence of my posted parameters?

转载 作者:太空宇宙 更新时间:2023-11-04 03:21:23 26 4
gpt4 key购买 nike

我正在发布一系列图像文件和每个图像的相应描述。所以骨架 html 表单部分:

<div class="form-group">
<input type="file" name="image">
<input type="file" name="description">
</div>
<div class="form-group">
<input type="file" name="image">
<input type="file" name="description">
</div>
<div class="form-group">
<input type="file" name="image">
<input type="file" name="description">
</div>

我的服务器是 Django 1.6.11,我想使用 Django 的 getlist 获取 image 参数和 description 参数。所以我想确保我得到的两个列表 --image_listdescription_list 确实匹配,这意味着 image_list[0] 确实匹配description_list[0]image_list[1] 确实与 description_list[1]image_list[2] 匹配与 description_list[2] 匹配。

根据我在Chrome和Django 1.6.11测试时看到的情况,似乎可以保证对应关系。但是,我不确定这是否一直适用。

最佳答案

我认为您不应该依赖 getlist 的序列.相反,您应该为每个 <input> 赋予不同的名称:

<div class="form-group">
<input type="file" name="image0">
<input type="file" name="description0">
</div>
<div class="form-group">
<input type="file" name="image1">
<input type="file" name="description1">
</div>
<div class="form-group">
<input type="file" name="image2">
<input type="file" name="description2">
</div>

然后在您的 View 中您可以:

for i in range(0, 3):
file = request.POST['image%s' % i]
description = request.POST['description%s' % i]
# other operations

关于python - django请求getlist方法: does this preserve the sequence of my posted parameters?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34625291/

26 4 0