登录  /  注册
首页 > php框架 > Laravel > 正文

使用Laravel时的一些小技巧

步履不停
发布: 2019-06-28 16:12:48
原创
3473人浏览过

使用Laravel时的一些小技巧

01: 触发父级的时间戳

如标题所示,在子模型更新时,可以触发父模型的时间戳。例如 Comment 属于 Post,有时更新子模型导致更新父模型时间戳非常有用。例如,当 Comment 模型被更新时,您要自动触发父级 Post 模型的 updated_at 时间戳的更新。Eloquent 让它变得简单,只需添加一个包含子模型关系名称的 touch 属性。

<?php namespace App;
use Illuminate\Database\Eloquent\Model;
class Comment extends Model
{
    /**
     * 涉及到的所有关联关系。
     *
     * @var array
     */
    protected $touches = [&#39;post&#39;];
    /**
     * 获取评论所属的文章。
     */
    public function post()
    {
        return $this->belongsTo('App\Post');
    }
}
登录后复制

02: 预加载精确的列

在使用预加载时,可以从关系中获取指定的列。

$users = App\Book::with('author:id,name')-&gt;get();
登录后复制

03: 为单个请求验证用户身份

你可以使用 Auth::once() 来为单个请求验证用户的身份,此方法不会使用 Cookie 会话。这意味着此方法可能有助于构建无状态 API

if (Auth::once($credentials)) {
    //
}
登录后复制

04: 重定向到带有参数的控制器方法中

你不仅可以将 redirect() 方法用于用户特定的 URL 或者路由中,还可以用于控制器中带有参数的方法中。

return redirect()-&gt;action('SomeController@method', ['param' =&gt; $value]);
登录后复制

05: 如何使用 withDefault() 避免在关系中出现的错误

当一个关系被调用时,如果它不存在,则会出现致命的错误,例如 $post-&gt;user-&gt;name ,可以使用 withDefault() 来避免。

/** 获取文章作者 */ 
public function user() 
{     
    return $this-&gt;belongsTo('App\User')-&gt;withDefault(); 
}
登录后复制

06: 在模版中两个平级的 $loop 变量

bladeforeach 中,即使在两次循环中,依然可以通过使用 $loop 变量来获取父级变量。

@foreach ($users as $user)     
    @foreach ($user-&gt;posts as $post)         
        @if ($loop-&gt;parent-&gt;first)             
            This is first iteration of the parent loop.         
        @endif     
    @endforeach 
@endforeach
登录后复制

07: 修改查询结果

在执行 Eloqument 查询后,你可以使用 map() 来修改行。

$users = User::where('role_id', 1)-&gt;get()-&gt;map(function (User $user) {
    $user-&gt;some_column = some_function($user);
    return $user;
});
登录后复制

08: 轻松的使用 dd()

Eloqument 的最后加上 $test-&gt;dd(),来代替 dd($result)

// 优化前
$users = User::where('name', 'Taylor')-&gt;get();
dd($users);
// 优化后
$users = User::where('name', 'Taylor')-&gt;get()-&gt;dd();
登录后复制

09: Use hasMany to saveMany.

如果有 hasMany() 关联关系,和想要从父类对象中保存许多子类对象,可以使用 saveMany() 来达到你想要的效果。

$post = Post::find(1);
$post-&gt;comments()-&gt;saveMany([
    new Comment(['message' =&gt; 'First comment']),
    new Comment(['message' =&gt; 'Second comment']),
]);
登录后复制

10: 在 Model::all() 中指定列

当你使用 EloqumentModel::all() 时,你可以指定要返回的列。

$users = User::all(['id', 'name', 'email']);
登录后复制

11: Blade 中的 @auth

你可以使用 @auth 指令来代替 if 语句来检查用户是否经过身份验证。

典型的方法:
@if(auth()-&gt;user())     // The user is authenticated. @endif
登录后复制
简短的方法:
@auth    
 // The user is authenticated. 
@endauth
登录后复制

12: 预览邮件而不发送

如果你使用 Mailables 来发送你的邮件,你可以预览它们而不发送出去。

Route::get('/mailable', function () {
    $invoice = App\Invoice::find(1);
    return new App\Mail\InvoicePaid($invoice);
});
登录后复制

13: hasMany 的特定检查

EloquenthasMany() 关系中,你可以筛选出具有 n 个子记录数量的记录。

// Author -&gt; hasMany(Book::class) 
$authors = Author::has('books', '&gt;', 5)-&gt;get();
登录后复制

14: 恢复多个软删除

如果记录使用了软删除,那么你就可以一次恢复多条软删除记录。

Post::withTrashed()-&gt;where('author_id', 1)-&gt;restore();
登录后复制

15: 带时区的迁移列

迁移文件不仅有 timestamps() 时间戳,还有 timestampsTz() 带有时区的时间戳。

Schema::create('employees', function (Blueprint $table) {
    $table-&gt;increments('id');
    $table-&gt;string('name');
    $table-&gt;string('email');
    $table-&gt;timestampsTz();
});
登录后复制

16: 视图文件是否存在?

你知道还可以检查视图文件是否存在吗?

if (view()-&gt;exists('custom.page')) {
    // Load the view
}
登录后复制

17: 组中的路由组

在路由文件中,你可以为一个路由组创造一个组,还可以为其指定特定的中间件。

Route::group(['prefix' =&gt; 'account', 'as' =&gt; 'account.'], function() {
    Route::get('login', 'AccountController@login');     
    Route::get('register', 'AccountController@register');
    Route::group(['middleware' =&gt; 'auth'], function() {         
        Route::get('edit', 'AccountController@edit');     
    });
});
登录后复制

18: Eloquent 中的日期时间方法

whereDay() , whereMonth() , whereYear() , whereDate() , whereTime() 这些方法皆为 Eloquent 中检查日期的方法。

$products = Product::whereDate('created_at', '2018-01-31')-&gt;get(); 
$products = Product::whereMonth('created_at', '12')-&gt;get(); 
$products = Product::whereDay('created_at', '31')-&gt;get(); 
$products = Product::whereYear('created_at', date('Y'))-&gt;get(); 
$products = Product::whereTime('created_at', '=', '14:13:58')-&gt;get();
登录后复制

19: 在 Eloquent 关系中使用 orderBy()

你可以在 Eloquent 关系中直接指定 orderBy()

public function products()
{
    return $this-&gt;hasMany(Product::class);
}
public function productsByName()
{
    return $this-&gt;hasMany(Product::class)-&gt;orderBy('name');
}
登录后复制

20: 无符号整型

对于迁移的外键,不要使用 integer() , 而是使用 unsignedInteger() 或者是 integer()-&gt;unsigned() ,否则将会出现一系列的错误。

Schema::create('employees', function (Blueprint $table) {     
    $table-&gt;unsignedInteger('company_id');     
    $table-&gt;foreign('company_id')-&gt;references('id')-&gt;on('companies');     
});
登录后复制

更多Laravel相关技术文章,请访问Laravel教程栏目进行学习!

以上就是使用Laravel时的一些小技巧的详细内容,更多请关注php中文网其它相关文章!

智能AI问答
PHP中文网智能助手能迅速回答你的编程问题,提供实时的代码和解决方案,帮助你解决各种难题。不仅如此,它还能提供编程资源和学习指导,帮助你快速提升编程技能。无论你是初学者还是专业人士,AI智能助手都能成为你的可靠助手,助力你在编程领域取得更大的成就。
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
最新问题
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2024 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号