gpt4 book ai didi

php - Laravel - 从 Controller 调用模型查找错误的文件名

转载 作者:行者123 更新时间:2023-12-04 16:59:51 27 4
gpt4 key购买 nike

我假设这可能是我不理解的一些约定。

我在主 App 文件夹中有一个名为 Ingredient 的模型。

namespace App;

use Illuminate\Database\Eloquent\Model;

class Ingredient extends Model
{
protected $table = "ingredients";
}

然后我有一个 Controller 试图调用该应用程序
namespace App\Http\Controllers;

use Illuminate\Http\Request;
use Config;
use App\Ingredient;

class IngredientController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
return response()
->json([
'status' => 'ok',
'ingredients' => Ingredient::all()
]);
}
}

一切似乎都很好。但是我收到 500 服务器错误:
include(C:\\Dev\\ScratchApi\\vendor\\composer\/..\/..\/app\/Ingredients.php): failed to open stream: No such file or directory

模型的文件名是 Ingredient.php
我是否需要将我的文件重命名为 Components.php 以满足命名约定?或者为什么这试图调用与我告诉它要查找的类名不同的文件名?

最佳答案

我认为这是因为自动加载缓存。因此,在您的项目根目录上运行以下命令,

composer dumpautoload

希望它有效。

关于php - Laravel - 从 Controller 调用模型查找错误的文件名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57110009/

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