所以我创建了一个可以像这样发布图像的表单,并在我检查视图时尝试处理图像
<form action="{{ $action }}" enctype="multipart/form-data" method="post">
<input type="file" name="imagefile" accept="image/*">
<input type="text" name="content">
<button tyoe="submit">OK</button>
</form>
用控制器处理取出图像并保存位置,同时观看其他人的博客
$post_data = $request->except('imagefile');
$imagefile = $request->file('imagefile');
$temp_path = $imagefile->store('public/temp');
$a = new Test;
$a->fill($request->all())->save();
我以为一切顺利,但出现了错误
无法将值 NULL 插入“图像文件”
之后我检查了但原因不明白。
元芳怎么了
慕姐4208626
泛舟湖上清波郎朗