Warning: Cannot modify header information - headers already sent by (output started at /www/wwwroot/sbboke.com/wp-content/plugins/wordpress-seo/src/integrations/front-end-integration.php:409) in /www/wwwroot/sbboke.com/wp-content/themes/pacify/content-single.php on line 5

Magento 2 如何请求上传带有字段名后缀的文件

我正在尝试在Magento 2中上传图像。以某种形式,我在图像字段的name属性中具有后缀,如下所示:

<input id="slide_image" name="slide[image]" class="input-file">

我的问题是当我尝试这样请求文件时,如何以以下方式请求此文件:

$this->getRequest()->getFiles('image');

我也尝试过这些方法

$this->getRequest()->getFiles('slide[image]');
$this->getRequest()->getFiles('slide.image');

解决方法

$this->getRequest()->getFiles('slide')['image']

相关文章

0 0 投票数
文章评分
订阅评论
提醒
0 评论
内联反馈
查看所有评论