关于Laravel 7 的简单隐式路由模型绑定
时间:2020-04-07 09:06
Laravel 的下一个主要发行版本 ,你可以直接在路由定义中自定义隐式路由模型绑定: 推荐:laravel教程 目前,使用 Laravel 6,下文中的需求需要你像这样在模型上定义一个 getRouteKeyName() 方法: 你仍能使用 getRouteKeyName() 方法;然而,我认为直接在路由中自定义它会更流畅。 可能你会有多个希望以不同方式绑定的路由。比如,前台路由用 slugs 去显示 posts ,后台则希望以 id 管理 posts 如果你开始尝试自定义隐式路由模型绑定,你可以安装开发版本的 Laravel 文章转发自专业的Laravel开发者社区,原始链接:https://learnku.com/laravel/t/37702 以上就是关于Laravel 7 的简单隐式路由模型绑定的详细内容,更多请关注gxlsystem.com其它相关文章!Route::get('/posts/{post:slug}', function (Post $post) {
// ...
});
<?php
class Post extends Model
{
/**
* Get the route key for the model.
*
* @return string
*/
public function getRouteKeyName()
{
return 'slug';
}
}
Route::get('/posts/{post:slug}', function (Post $post) {
// ...
});
// 或者你在这儿可以用默认的`{post}`
Route::get('/admin/posts/{post:id}/edit', function (Post $post) {
// ...
});
laravel new example --dev