前端之家收集整理的这篇文章主要介绍了
一些实用的 Laravel 小技巧,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Laravel 中一些常用的小技巧,说不定你就用上了。
1.侧栏
网站一般都有侧栏,用来显示分类,标签,热门文章,热门评论啥的,但是这些侧栏都是相对独立的模块,如果在每一个引入侧栏的视图中都单独导入与视图有关的数据的话,未免太冗余了。所以最佳的做法是:新建一个widgets视图文件夹,再利用Laravel 的ViewComposers单独为侧栏绑定数据,这样侧栏就可以随便引入而不用关心数据是否绑定啦。
举个栗子,拿最常用的分类侧栏来说,在resources/views/widgets下新建你的分类侧栏视图文件
@H_
502_10@
categories.blade.PHP:
<divclass=
"widget widget-default"
<divclass=
"widget-header"><h6><iclass=
"fa fa-folder fa-fw"></i>
分类</h6></div>
<ulclass=
"widget-body list-group"
@forelse($categoriesas$category)
@if(str_contains(urldecode(request->getPathInfo),
'category/'.$category->
name))
<lihref=
"{{ route('category.show',$category->name) }}"
@H_
404_53@class=
"list-group-item active"
{{$category->
name }}
<spanclass=
"badge"{{$category->posts_count }}</span>
</li>
<ahref=
'http://www.jobbole.com/members/wx2715401697'@else</a>
<ahref=
"{{ route('category.show',$category->name) }}"
@H_
404_53@class=
"list-group-item"
</a>
<ahref=
'http://www.jobbole.com/members/endif1983'@endif</a>
<ahref=
'http://www.jobbole.com/members/mxbeijing2007'@empty</a>
<pclass=
"Meta-item center-block"No categories.</p>
@endforelse
</ul>
新建app/Http/ViewComposers文件夹,然后创建CategoriesComposer.PHP:
@H_
502_10@<?
PHP
namespaceApp\Http\ViewComposers;
useApp\Http\Repositories\CategoryRepository;
useIlluminate\View\View;
classCategoriesComposer
{
publicfunction__construct(CategoryRepository$categoryRepository)
{
$@H_
404_53@this->categoryRepository=
$categoryRepository;
}
publicfunctioncompose(View$view)
{
$categories=$@H_
404_53@this->categoryRepository->getAll->
reject(function($category){
@H_
404_53@return$category->posts_count==
0;
});
$view->with(
'categories'$categories);
}
@H_
502_10@
再在app/Providers文件夹下新建ComposerServiceProvider.PHP文件:
@H_
502_10@<?
PHP
namespaceApp\Providers;
useIlluminate\Support\ServiceProvider;
useIlluminate\Support\Facades\View;
classComposerServiceProviderextendsServiceProvider
{
publicfunctionboot
{
View::composer('widget.categories''App\Http\ViewComposers\CategoriesComposer');
}
publicfunctionregister{}
}
@H_
502_10@
最后别忘了在config/app.PHP中的providers数组中添加AppProvidersComposerServiceProvider::class啊。好了,现在你可以随时随地@include('widget.categories')了。对了,要善于在ViewComposer中利用Collection的强大方法进行数据处理。
2.善用路由别名
Laravel 最让人喜欢的地方之一是可以给路由起一个别名,比如:
@H_
502_10@Route::@H_
404_53@get(
'user/profile''UserController@showProfile')->name(
'user.profile');
// 等价于:
Route::@H_
404_53@get(
'user/profile'[
'uses'=>
'UserController@showProfile''as'=>
'user.profile']);;
//例如:
<ahref=
"{{ route('user.profile') }}"lufficc</a>
因为一个普通的项目路由至少也得有几十个,如果使用url方法的话,你不但要记住具体的路由,更麻烦的是如果你将来想要改变某个路由(比如把'user/profile'改为'u/profile',或者加个前缀啥的),必须改变所有相关的视图文件,而使用命名路由的话,只要命名不变,毫不受影响。
所以视图文件中尽量避免使用url方法,为每一个路由命名,一个默认的命名规则为:资源名称.或者,如post.show,image.upload。
3.全局动态设置
仅仅是.env的配置还无法满足我们的需求,有时我们需要可以在后台动态的进行一些设置,比如网站的标题,网站的背景图片或者是否允许评论等等。那么实现这个的最佳实践是什么?
熟悉wordpress的同学知道,wordpress可以进行很多自定义,因为wordpress有一张键值对数据库表,它就是靠这个实现个性化的。因此我们也可以参考这种思路,增加一个键值对表,以Xblog为例子,新建一个maps表:
@H_
502_10@$table->text(
'value')->nullable(@H_
404_53@true);
maps表的作用就是实现键值对key-value存储,tag的是为了可以有一个分类。然后后台进行存储的话,不要写死,这样就可以随时在变单中添加设置而无需更改代码:
@H_
502_10@
]);
$map->tag=
'settings';
$map->value=
$value;
$map->
save;
注意firstOrNew的用法:如果不存在这个选项我们就新增一个并保存,否则就更新它。然后我们就可以在视图中随便增加任意多个表单了(或者也可以用js动态生成表单)。有了数据,怎么在视图中利用呢?利用ViewComposer,新建一个SettingsComposer.PHP,然后将查询的数据以数组的形式传递给视图:
//在SettingsComposer.PHP的compose方法中绑定数据
publicfunctioncompose(View$view)
{
$settings=Map::@H_
404_53@where(
'tag''settings')->@H_
404_53@get
;
@H_
404_53@foreach
($settingsas$setting){
}
}
然后就可以在视图中随便引用了,如你表单新增加了一个description
然后就可以在任何视图引用了:{{ $description or ''}}。另外还可以绑定一个单例Facades到容器,这样就可以在代码中随时获取配置信息啦。
@H_
502_10@
//1.注册
publicfunctionregister
{
$@H_
404_53@this->app->singleton(
'XblogConfig'function($app){
returnnewMapRepository;
});
}
//2.注册Facade
classXblogConfigextendsFacade
{
publicstaticfunctiongetFacadeAccessor
{
@H_
404_53@return
'XblogConfig';
}
}
//3.添加到aliases数组
'aliases'=>
[
***************** 省略 span>
'XblogConfig'=>App\Facades\XblogConfig::@H_
404_53@class
],//4.愉快的使用,可爽
$page_size=XblogConfig::getValue(
'page_size'7);
4.数据库查询
怎么统计一篇文章有多少评论?最快的方法是:
@H_
502_10@$post = Post::@H_
404_53@where(
'id',
1)->withCount(
'comments')->first;
这样$post变量就有一个属性comments_count了:
@H_
502_10@$post->comments_count;
如果想获取点赞数大于的100的评论个数怎么办?这样:
@H_
502_10@$post=Post::@H_
404_53@where(
'id'1)->withCount(
'comments'function($query){
$query->@H_
404_53@where(
'like''>'100);
})->first;
5.多态关联
文章可以有评论,页面可以有评论,评论也可以有评论,但是总不能建三张评论表吧?如果自己写条件判断也太麻烦了吧,Laravel的多态关联上场了!!
@H_
502_10@
//1.第一步在Comment模型中说明我是可以多态的
@H_
404_53@return$@H_
404_53@this->
morphTo;
}
//2.在想要评论的模型中增加comments方法,
publicfunctioncomments
{
@H_
404_53@return$@H_
404_53@this->morphMany(Comment::@H_
404_53@class
'commentable');
}
//3.使用,就像普通的一对多关系一样:
$model->
comments;
Schema::create('comments'function(Blueprint$table){
//等价于
****************
省略
然后 laravel 会自动维持这些关系。注意,保存的评论的时候是有小技巧的,你的表单中至少要传两个参数:commentable_id和commentable_type:
$comment=
newComment;
$commentable_id=$request->@H_
404_53@get(
'commentable_id');
//commentable_type取值例如:AppPost,AppPage等等
$commentable=app($request->@H_
404_53@get(
'commentable_type'))->@H_
404_53@where(
'id'$commentable_id)->
firstOrFail;
****************
省略
$commentable->comments->save($comment);
保存评论的时候并不知道是谁的评论,而是使用容器根据commentable_type生成一个模型实例,这样也就和具体的模型解耦了,你可以让任何东西可以评论,而不需要修改代码。
6.缓存优化相关
如果你想要在.env文件中添加自己的配置,记住一定要在config文件夹下某个配置文件的数组中添加对应的。记住,除了config文件夹下的配置文件,永远不要在其它地方使用env函数,因为部署到线上时,配置文件缓存(PHP artisan config:cache)后,env函数无法获得正确的值。
另外注意的是,路由文件中尽量不使用闭包函数,统一使用控制器,因为缓存路由的时候PHP artisan route:cache,无法缓存闭包函数。
7.Redis
如果你缓存使用Redis,session也使用了Redis,队列已使用了Redis,这样没问题,速度很快。但是,当你运行PHP artisan cache:clear清除缓存时,会把你的登录信息清除,也会把队列清除……这就不优雅了。解决办法很简单,为它们分配不同的连接即可。
首先在configdatabase.PHP中增加连接,注意database序号:
@H_
502_10@
'redis'=>
[
'cluster'=>@H_
404_53@false
'default'=>
[
'host'=>env(
'REDIS_HOST''localhost'),'password'=>env(
'REDIS_PASSWORD'@H_
404_53@null
),'port'=>env(
'REDIS_PORT'6379),'database'=>
0
],'session'=>
[
'database'=>
1
],'queue'=>
[
'database'=>
2
],],//queue.PHP中的connections数组中:
'redis'=>
[
'driver'=>
'redis'
'connection'=>
'queue'
'queue'=>
'default'
'retry_after'=>
90
],//session.PHP中的connection选项:
'connection'=>
'session'
这样它们就互不相干了~~
原文链接:https://www.f2er.com/laravel/539546.html