动词 | 路径 | 行为 | 路由名称 |
GET | /photo | index | photo.index |
GET | /photo/create | create | photo.create |
POST | /photo | store | photo.store |
GET | /photo/{photo} | show | photo.show |
GET | /photo/{photo}/edit | edit | photo.edit |
PUT/PATCH | /photo/{photo} | update | photo.update |
DELETE | /photo/{photo} | destroy | photo.destroy |
你注意看文档,它已经给你规定好了路劲
比如index
restfull 应该是:http://{domain}/photo,而不是:http://{domain}/photo/index
我定义了个资源路由Route::resource(‘article’, ‘ArticleController’);
当我访问地址http://yourdomain/article,相当于访问控制器ArticleController的index方法。
当我访问地址http://yourdomain/article/create,就会访问到create方法。
当我通过POST提交数据至地址http://yourdomain/article,相当于由store方法处理。
参考网站:https://laravel.com/docs/5.0/controllers#restful-resource-controllers