gpt4 book ai didi

php - Laravel 8 在 null 上调用成员函数 extension()

转载 作者:行者123 更新时间:2023-12-05 02:40:43 25 4
gpt4 key购买 nike

在将配置文件夹中的文件路径更改为 public 并正确设置模型后,我正在尝试在 Laravel 8 中上传图像。我收到了这个回复

Call to a member function extension() on null

我的产品 Controller

 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();
});
}

请问我做错了什么或做错了什么?

最佳答案

在创建产品之前验证您是否有文件。或者对所有必填字段进行适当的验证。

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;
}

关于php - Laravel 8 在 null 上调用成员函数 extension(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68390391/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com