Laravel 中的路由顺序很重要

Posted

技术标签:

【中文标题】Laravel 中的路由顺序很重要【英文标题】:Routing order in Laravel matters 【发布时间】:2015-03-14 14:18:37 【问题描述】:

Laravel 中的路由顺序重要吗?

我创建了以下路线:

Route::get('authors/new', array('as'=>'new_author', 'uses'=>'AuthorsController@getNew'));
Route::get('authors/id', array('as'=>'author', 'uses'=>'AuthorsController@getView'));

在作者控制器中,我有这些:

public function getView($id)

    return View::make('authors.view')
        ->with('title', 'Author View Page')
        ->with('author', Author::find($id));


public function getNew()

    return View::make('authors.new')
        ->with('title', 'Add New Author');

当我进入页面 localhost/authors/new 时,它工作正常。

但是,如果我像这样更改路线的顺序:

Route::get('authors/id', array('as'=>'author', 'uses'=>'AuthorsController@getView'));
Route::get('authors/new', array('as'=>'new_author', 'uses'=>'AuthorsController@getNew'));

它不再起作用了,它说:

Trying to get property of non-object (View: C:\xampp\htdocs\laravel\app\views\authors\view.blade.php)

【问题讨论】:

order of route declarations in laravel package的可能重复 重复***.com/questions/20870899/… 【参考方案1】:

我知道这个问题已经过时并且可能已经过时,但我认为 cmets 中提到的可能重复项不适合这个问题。

不过,我找到了下面这个问题的解决方案,我也遇到过。

将以下约束添加到您的路线,使其看起来像这样:

Route::get('authors/id', array('as'=>'author', 'uses'=>'AuthorsController@getView'))
->where('id', '[0-9]+');

这样,Laravel 会先检查参数id 是否为数字。

欲了解更多信息,请see the official documentation。

【讨论】:

以上是关于Laravel 中的路由顺序很重要的主要内容,如果未能解决你的问题,请参考以下文章

laravel 包中路由声明的顺序

访问 Vue 模板中的所有 Laravel 路由

使用 POSTMAN 测试 Laravel API 路由

Laravel 8 从下到上的路线顺序

laravel框架好学吗

如何设置 Laravel 中间件的执行顺序?