Laravel 8在null上调用成员函数扩展()
Posted
技术标签:
【中文标题】Laravel 8在null上调用成员函数扩展()【英文标题】:Laravel 8 Call to a member function extension() on null 【发布时间】:2021-09-24 03:50:02 【问题描述】:在将配置文件夹中的文件路径更改为公共并正确设置模型后,我正在尝试在 Laravel 8 中上传图像。我收到此回复
在 null 上调用成员函数 extension()
我的产品控制器
public function store(Request $request)
$file = $request->file('image');
$name = Str::random(10);
$url = Storage::putFileAs('images', $file, $name . '.' . $file->extension());
$product = Product::create([
'title' => $request -> input('title'),
'description' => $request -> input('description'),
'image' => env('APP_URL') . '/' . $url,
'price' => $request -> input('price'),
]);
return $product;
我的模型
protected $guarded = ['id'];
迁移
public function up()
Schema::create('products', function (Blueprint $table)
$table->id();
$table->string('title');
$table->string('description')->nullable();
$table->string('image');
$table->decimal('price');
$table->timestamps();
);
请问我做错了什么或做错了什么?
【问题讨论】:
【参考方案1】:在创建产品之前验证您是否有文件。或者对所有必填字段进行适当的验证。
public function store(Request $request)
if (!$request->has('image'))
return response()->json(['message' => 'Missing file'], 422);
$file = $request->file('image');
$name = Str::random(10);
$url = Storage::putFileAs('images', $file, $name . '.' . $file->extension());
$product = Product::create([
'title' => $request -> input('title'),
'description' => $request -> input('description'),
'image' => env('APP_URL') . '/' . $url,
'price' => $request -> input('price'),
]);
return $product;
【讨论】:
哇,这是真的。我的文件丢失了。谢谢以上是关于Laravel 8在null上调用成员函数扩展()的主要内容,如果未能解决你的问题,请参考以下文章
laravel 8 中的文件上传 - 在 null 上调用成员函数 getClientOriginalName() 时出错
在 null sanctun laravel mongodb 上调用成员函数 prepare()
Laravel 护照抛出错误:“在 null 上调用成员函数 createToken()”
为啥我不能在 Laravel 上正确映射嵌套查询? “在 null 上调用成员函数 map()”显示为错误