首页 > 开发 > PHP > 正文

Laravel 5框架学习之日期,Mutator 和 Scope

2024-05-04 23:34:03
字体:
来源:转载
供稿:网友

这篇文章主要介绍了Laravel 5框架学习之日期,Mutator 和 Scope的相关资料,需要的朋友可以参考下

在我们前面的解决方案中,直接给 published_at 赋值为当前日期实际上是一个临时解决方案,我们需要设定发布日期,可能是未来2天后才发布,让我们修改这个问题。

首先修改控制器:

 

 
  1. public function store() { 
  2. Article::create(Request::all()); 
  3. return redirect('articles'); 

然后修改视图,添加发布日期字段

  1. @extends('layout'
  2.  
  3. @section('content'
  4. <h1>Write a New Article</h1> 
  5.  
  6. <hr/> 
  7.  
  8. {{--使用我们添加的 illuminate/html 开源库--}} 
  9. {!! Form::open(['url' => 'articles']) !!} 
  10. <div class="form-group"
  11. {!! Form::label('title''Title:') !!} 
  12. {!! Form::text('title', null, ['class' => 'form-control']) !!} 
  13. </div> 
  14.  
  15. <div class="form-group"
  16. {!! Form::label('body''Body:') !!} 
  17. {!! Form::textarea('body', null, ['class' => 'form-control']) !!} 
  18. </div> 
  19.  
  20. <div class="form-group"
  21. {!! Form::label('published_at''Publish On:') !!} 
  22. {!! Form::input('date''published_at'date('Y-m-d'), ['class' => 'form-control']) !!} 
  23. </div> 
  24.  
  25. <div class="form-group"
  26. {!! Form::submit('Add Article', ['class' => 'btn btn-primary form-control']) !!} 
  27. </div> 
  28.  
  29. {!! Form::close() !!} 
  30.  
  31. @stop 


ok,让我们添加一个新的文章,并且把日期设置为未来的某一天,但是文章直接显示在最开始了,这不是我们需要的。我们需要到了那天才显示出来。当然,我们需要更具体一点,比如在早上 8:00 显示,而不是0点显示。我们可以添加一个mutator(也就是其他语言的属性设置器),修改我们的model

  1. <?php namespace App; 
  2.  
  3. use DateTime; 
  4. use Illuminate/Database/Eloquent/Model; 
  5.  
  6. class Article extends Model { 
  7.  
  8. protected $fillable = [ 
  9. 'title'
  10. 'body'
  11. 'published_at' 
  12. ]; 
  13.  
  14. //属性设置其要遵守格式约定 
  15. // set属性Attribute 
  16. public function setPublishedAtAttribute($date) { 
  17. $this->attributes['published_at'] = Carbon::createFromFormat('Y-m-d'$date)->hour(8)->minute(0)->second(0); 
  18.  



添加一个新的纪录,查看数据库,我们已经将时间设置正确了,但是我们的首页仍然显示未来的才发布的文章,我们修改它。

  1. public function index() { 
  2. //$articles = Article::latest('published_at')->get(); 
  3. $articles = Article::latest('published_at')->where('published_at''<=', Carbon::now())->get(); 
  4.  
  5. return view('articles.index', compact('articles')); 


上面的解决方法可以工作,但是查询语句太长了。我们可以使用 Laravel 提供的 scope ,来简化我们的工作。所谓scope可以理解为是查询过程中使用的中间查询结果,比如我们定义一个published scope,他可以返回所有当前已经发布的文章,让我们修改模型。

  1. //设置scope,遵守命名规则 
  2. public function scopePublished($query) { 
  3. $query->where('published_at''<=', Carbon::now()); 


修改控制器使用 scope

  1. public function index() { 
  2. //$articles = Article::latest('published_at')->get(); 
  3. //$articles = Article::latest('published_at')->where('published_at', '<=', Carbon::now())->get(); 
  4. $articles = Article::latest('published_at')->published()->get(); 
  5.  
  6. return view('articles.index', compact('articles')); 


结果相同,但在复杂的查询中我们可以使用scope来分解我们的任务,或者复用查询。

我们来增加一个新的查询,查询所有还没有发布的文章。在模型中添加scope

  1. public function scopeUnpublished($query) { 
  2. $query->where('published_at''>', Carbon::now()); 


修改控制器使用unpulished

 

 
  1. public function index() { 
  2. //$articles = Article::latest('published_at')->get(); 
  3. //$articles = Article::latest('published_at')->where('published_at', '<=', Carbon::now())->get(); 
  4. //$articles = Article::latest('published_at')->published()->get(); 
  5. $articles = Article::latest('published_at')->Unpublished()->get(); 
  6.  
  7. return view('articles.index', compact('articles')); 

one more thing! 如果我们在 show 方法中使用 dd($article->published_at) 查看的结果,与 dd($article->created_at); 结果不一样,前者我们使我们自己的字段,后者是在 CreateArticleTable 中通过 $table->timestamp() 自动生成的。自动生成的字段显示出来是 Carbon类型,而我们的是字符串。使用 Crabon类型有很多的好处,例如你可以输出 dd($article->created_at->diffForHumans()); ,这种 1 hour ago 结果,但我们的published_at 不可以。怎么修改?修改模型,告诉laravel,published_at 是日期即可。

 

 
  1. protected $dates = ['published_at']; 
 

 

 

再次使用 dd($article->published_at->diffForHumans()); ,结果显示为 3 days from now,Bingo!

以上所述就是本文的全部内容了,希望能够给大家学习Laravel5框架有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表