0

我正在观看 tutsplus 上关于使用 Laravel 构建真实应用程序的系列。该系列是去年创建的。我认为它适用于 Laravel 3。

我假设有很多变化,到目前为止我发现了大部分变化,并用旧代码替换了它。但我无法弄清楚这一点。

在下面的代码中,ReflectionException - Class questions does not exist即使我知道的类在那里,我也会收到错误消息。我确实尝试了作曲家更新和自动哑,但输出相同。

我认为这些文件有问题:

代码:

QuestionsController.php

class QuestionsController extends BaseController {
    public $restful = true;

    public function get_index() {
        return View::make('questions.index')
            ->with('title', 'Make it snappy Q&A - Home');
    }
}

路由.php:

Route::get('/', array(
    'as' => 'home',
    'uses' => 'questions@index'
));

为什么会报错?

4

1 回答 1

4

那应该工作

Route::get('/', array(
    'as' => 'home',
    'uses' => 'QuestionsController@get_index'
));
于 2013-06-01T10:59:34.567 回答