Laravel 5 基礎(十)- 日期,Mutator 和 Scope

在咱們前面的解決方案中,直接給 published_at 賦值爲當前日期其實是一個臨時解決方案,咱們須要設定發佈日期,多是將來2天后才發佈,讓咱們修改這個問題。php

首先修改控制器:html

public function store() {
        Article::create(Request::all());
        return redirect('articles');
    }

而後修改視圖,添加發布日期字段laravel

@extends('layout')

@section('content')
    <h1>Write a New Article</h1>

    <hr/>

    {{--使用咱們添加的 illuminate\html 開源庫--}}
    {!! Form::open(['url' => 'articles']) !!}
        <div class="form-group">
            {!! Form::label('title', 'Title:') !!}
            {!! Form::text('title', null, ['class' => 'form-control']) !!}
        </div>

        <div class="form-group">
            {!! Form::label('body', 'Body:') !!}
            {!! Form::textarea('body', null, ['class' => 'form-control']) !!}
        </div>

        <div class="form-group">
            {!! Form::label('published_at', 'Publish On:') !!}
            {!! Form::input('date', 'published_at', date('Y-m-d'), ['class' => 'form-control']) !!}
        </div>

        <div class="form-group">
            {!! Form::submit('Add Article', ['class' => 'btn btn-primary form-control']) !!}
        </div>

    {!! Form::close() !!}

@stop

ok,讓咱們添加一個新的文章,而且把日期設置爲將來的某一天,可是文章直接顯示在最開始了,這不是咱們須要的。咱們須要到了那天才顯示出來。固然,咱們須要更具體一點,好比在早上 8:00 顯示,而不是0點顯示。咱們能夠添加一個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);
    }

}

添加一個新的紀錄,查看數據庫,咱們已經將時間設置正確了,可是咱們的首頁仍然顯示將來的才發佈的文章,咱們修改它。this

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,他能夠返回全部當前已經發布的文章,讓咱們修改模型。url

//設置scope,遵照命名規則
    public function scopePublished($query) {
        $query->where('published_at', '<=', Carbon::now());
    }

修改控制器使用 scopespa

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來分解咱們的任務,或者複用查詢。code

咱們來增長一個新的查詢,查詢全部尚未發佈的文章。在模型中添加scopeorm

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

修改控制器使用unpulishedhtm

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,Bingo!

相關文章
相關標籤/搜索