将多张图片保存到 Laravel Livewire
Save multiple images to Laravel Livewire
我正在尝试保存图像地址,但出现以下错误:数组到字符串的转换 Laravel。
图片路径应该如何保存?官方文档中没有指出这一点。
我的代码如下:
VIEW
<input wire:model="imagenes" type="file" class="form-control-file" multiple>
组件
use WithFileUploads;
public $imagenes = [];
foreach ($this->imagenes as $pathGalería) {
$pathGalería->store('imagenesPropiedades');
}
$properties = Property::create([
'imagenes' => $this->imagenes
]);
编辑:数组
我收到错误:数组到字符串的转换。你能帮帮我吗
我想我知道你指的是什么。您的意思是要保存上传文件的哈希名称吗?
你应该使用这个:
$properties = Property::create([
'imagenes' => $this->imagenes->hashName()
]);
或者,有一个 youtube 视频系列实际上涵盖了 laravel livewire 简单文件上传和多文件上传功能。
我正在尝试保存图像地址,但出现以下错误:数组到字符串的转换 Laravel。
图片路径应该如何保存?官方文档中没有指出这一点。
我的代码如下:
VIEW
<input wire:model="imagenes" type="file" class="form-control-file" multiple>
组件
use WithFileUploads;
public $imagenes = [];
foreach ($this->imagenes as $pathGalería) {
$pathGalería->store('imagenesPropiedades');
}
$properties = Property::create([
'imagenes' => $this->imagenes
]);
编辑:数组
我收到错误:数组到字符串的转换。你能帮帮我吗
我想我知道你指的是什么。您的意思是要保存上传文件的哈希名称吗?
你应该使用这个:
$properties = Property::create([
'imagenes' => $this->imagenes->hashName()
]);
或者,有一个 youtube 视频系列实际上涵盖了 laravel livewire 简单文件上传和多文件上传功能。