2

Laravel 4 遇到了一个小问题。我有以下路线:

Route::get('search', 'MovieController@search');
Route::get('edit/{$id}', 'MovieController@edit');
Route::get('/', 'MovieController@index');

和以下控制器:

class MovieController extends BaseController {

protected $layout = 'layouts.master';

public function index()
{
    $movies = Movie::paginate(30);
    return View::make('index')->with('movies', $movies);
}

public function search()
{
    if(isset($_REQUEST['sq'])) {
        Cache::forever('sq', $_REQUEST['sq']);
    }
    $movies = Movie::where('title', 'LIKE', '%'.Cache::get('sq').'%')->paginate(30);

    return View::make('index')->with('movies', $movies);
}

public function edit($id) {
    return View::make('edit')->with('id', $id);
    }

}

现在这样的电话不起作用:

<a href="edit/{{ $movie->movie_id }}">

我得到一个“NotFoundHttpException”。URL 似乎是正确的:laravel/public/edit/2 例如

如果我从代码中删除所有 $id 东西,所以我只路由到编辑,它可以工作。

希望我能充分表达自己,所以有人可以帮助我。它快把我逼疯了。

问候

4

1 回答 1

4

在你的 routes.php 中,不是Route::get('edit/{$id} ...但是Route::get('edit/{id}

于 2013-06-05T08:13:30.847 回答