大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。
Jetbrains全系列IDE使用 1年只要46元 售后保障 童叟无欺
public function store() { Article::create(Request::all()); return redirect(‘articles’); }
然后修改视图,添加发布日期字段
@extends(‘layout’) @section(‘content’)
Write a New Article
{
{–使用我们添加的 illuminate\html 开源库–}} {!! Form::open([‘url’ => ‘articles’]) !!}
{!! Form::close() !!} @stop
可以添加一个mutator(也就是其他语言的属性设置器),修改我们的model
<?php namespace App; use DateTime; use Illuminate\Database\Eloquent\Model; class Article extends Model { protected $fillable = [ ‘title’, ‘body’, ‘published_at’ ]; //属性设置其要遵守格式约定 // set属性Attribute public function setPublishedAtAttribute($date) { $this->attributes[‘published_at’] = Carbon::createFromFormat(‘Y-m-d’, $date)->hour(8)->minute(0)->second(0); } }
添加一个新的纪录,查看数据库,我们已经将时间设置正确了,但是我们的首页仍然显示未来的才发布的文章,我们修改它。
public function index() { //$articles = Article::latest(‘published_at’)->get(); $articles = Article::latest(‘published_at’)->where(‘published_at’, ‘<=’, Carbon::now())->get(); return view(‘articles.index’, compact(‘articles’)); }
上面的解决方法可以工作,但是查询语句太长了。我们可以使用 Laravel 提供的 scope ,来简化我们的工作。所谓scope可以理解为是查询过程中使用的中间查询结果,比如我们定义一个published scope,他可以返回所有当前已经发布的文章,让我们修改模型。
//设置scope,遵守命名规则 public function scopePublished($query) { $query->where(‘published_at’, ‘<=’, Carbon::now()); }
修改控制器使用 scope
public function index() { //$articles = Article::latest(‘published_at’)->get(); //$articles = Article::latest(‘published_at’)->where(‘published_at’, ‘<=’, Carbon::now())->get(); $articles = Article::latest(‘published_at’)->published()->get(); return view(‘articles.index’, compact(‘articles’)); }
在复杂的查询中我们可以使用scope来分解我们的任务,或者复用查询。
我们来增加一个新的查询,查询所有还没有发布的文章。在模型中添加scope
public function scopeUnpublished($query) { $query->where(‘published_at’, ‘>’, Carbon::now()); }
修改控制器使用unpulished
public function index() { //$articles = Article::latest(‘published_at’)->get(); //$articles = Article::latest(‘published_at’)->where(‘published_at’, ‘<=’, Carbon::now())->get(); //$articles = Article::latest(‘published_at’)->published()->get(); $articles = Article::latest(‘published_at’)->Unpublished()->get(); 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 是日期即可。
protected $dates = [‘published_at’];
再次使用 dd($article->published_at->diffForHumans()); ,结果显示为 3 days from now,搞定!
部分代码源自CSDN.NET和CODEGO.NET
来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/30190496/viewspace-1544038/,如需转载,请注明出处,否则将追究法律责任。
转载于:http://blog.itpub.net/30190496/viewspace-1544038/
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/194607.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...