为什么我的Laravel模块中出现“未找到类”错误?

时间:2014-09-11 12:24:15

标签: php database laravel laravel-4

我正在使用“laravel / framework”:“4.2。*”版本,我想将模块系统用于我的项目。我已按照this document中提供的说明操作。

我可以使用以下命令创建模块:php artisan modules:create module_name。我在app目录中创建了一个管理模块,并且已经创建了模块的目录结构。

我在管理模块的控制器的一个操作中使用DB::select('some SQL statement'),但是它给了我以下错误:

  

找不到类'App \ Modules \ Admin \ Controllers \ DB'。

为什么找不到这门课?

3 个答案:

答案 0 :(得分:13)

在根命名空间外使用DB或任何其他Laravel外观时,您需要确保在根命名空间中实际使用该类。你可以在课前加上\

\DB::select(...)

或者您可以在类文件中使用use关键字,以允许使用不同的命名空间类,而无需在每次使用时都明确写出命名空间。

<?php namespace App\Modules\Admin\Controllers;

use DB;
use BaseController;

class ModuleController extends BaseController {

    public function index()
    {
        // This will now use the correct facade
        $data = DB::select(...);
    }
}

请注意,use关键字始终假定它正在从根命名空间加载命名空间。因此,use始终需要完全限定的命名空间。

答案 1 :(得分:0)

或者你可以在composer.json

中使用自动加载
"autoload": {
    "classmap": [
        "app/commands",
        "app/controllers",
        "app/models",
        "app/database/migrations",
        "app/database/seeds",
        "app/tests/TestCase.php"
    ]
},

答案 2 :(得分:0)

使用Illuminate \ Support \ Facades \ DB;