laravel 资源路由

https://blog.csdn.net/will5451/article/details/51858723

php artisan make:controller Admin/ArticleController  --resource

请求方法 请求URI 对应的控制器方法 代表的意义
GET /article index 索引/列表
GET /article/create create 创建(显示表单)
POST /article store 保存你创建的数据
GET /article/{id} show 显示对应id的内容
GET /article/{id}/edit edit 编辑(显示表单)
PUT/PATCH /article/{id} save 保存你编辑的数据
GET /article/{id} destroy 删除

大概挑两条解释。

我定义了个资源路由Route::resource('article', 'ArticleController');。

当我访问地址http://yourdomain/article,相当于访问控制器ArticleController的index方法。

当我访问地址http://yourdomain/article/create,就会访问到create方法。

当我通过POST提交数据至地址http://yourdomain/article,相当于由store方法处理。

创建一个资源路由    Route::resource('admin/article','ArticleController');

    A+
发布日期:2018年05月30日  所属分类:未分类

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: