1
刚“入门Laravel 4”拉斐尔Saunier的 电子书,并试图教程,而写路线::获得routes.php文件 我得到一个错误,指出Laravel路线:获取序列问题?
Symfony \ Component \ HttpKernel \ Exception \ NotFoundHttpException
当我写的这样
Route::get('cats/{cat}', function($cat){
return View::make('cats.single')->with('cat', $cat);
});
Route::get('cats/create', function() {
$cat = new Cat;
return View::make('cats.edit')
->with('cat', $cat)
->with('method', 'post');
});
但packtpub下载源文件代码后,我交叉检查所有代码都是完全一样的,只是顺序不同,这样
Route::get('cats/create', function() {
$cat = new Cat;
return View::make('cats.edit')
->with('cat', $cat)
->with('method', 'post');
});
Route::get('cats/{cat}', function($cat){
return View::make('cats.single')->with('cat', $cat);
});
在routes.php上的路由序列差异就像这个问题?我怎么能现在错误是从路线序列?