Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图让用户有机会上传他想要的这么多文件。所以他可以添加更多的输入文件字段。
我这样做了:<input type="file" name="images[]" />但我不知道如何在服务器端捕获它们。
<input type="file" name="images[]" />
我可以images = request.POST.get('images'),但这将是一个数组,不是吗?如何分别保存它们?
images = request.POST.get('images')
如何在 django 的服务器中捕获它们?
多谢
当我按信封拆分交易时,我也在这样做,因此可以像这样保存:
def view_name(request): if request.method == 'POST': images = request.POST.getlist('images[]') for i in range(len(images)): //do forloop here