gpt4 book ai didi

php - 如何以形式传递多个图像并在 Controller 中捕获?

转载 作者:行者123 更新时间:2023-11-28 02:25:26 25 4
gpt4 key购买 nike

我的表单中有输入标签,可以获取多个图像,但是当我将表单发布到我的 Controller 时,只传递了最后一张图像。

这是我的表格

<form class="floating-labels m-t-40" method="post" action="{{asset(route('products.store'))}}" enctype="multipart/form-data" >
<input type="hidden" name="_token" value="{{csrf_token() }} ">
<input type="file" name="other_file[]" id="images" multiple="multiple"/>
</form>

当我在我的 Controller 中 dd($request)只显示最后一张图片的详细信息。

还有希望吗?

最佳答案

对我来说它是这样工作的:

if($request->hasFile('attachment'))
{
$files = $request->file('attachment');
foreach ($files as $file) {
.....
}
}

html部分

<input type="file" name="attachment[]" multiple>

关于php - 如何以形式传递多个图像并在 Controller 中捕获?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54402745/

25 4 0
文章推荐: c++ - 条件变量不起作用,但在添加 std::cout 后,它起作用了
文章推荐: c++ - 将 rand_r 更改为 srand/rand
文章推荐: javascript - 未捕获的类型错误 : Property 'which' of object # is not a function