91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用Laravel5.1 框架怎么實現模型軟刪除操作

發布時間:2021-04-13 15:53:33 來源:億速云 閱讀:188 作者:Leah 欄目:開發技術

使用Laravel5.1 框架怎么實現模型軟刪除操作?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

1 普通刪除

在軟刪除之前咱先看看普通的刪除方法:

1.1 直接通過主鍵刪除

  public function getDelete()
  {
    Article::destroy(1);
    Article::destroy([1,2,3]);
  }

1.2 獲取model后刪除

  public function getDelete()
  {
    $article = Article::find(3);
    $article->delete();
  }

1.3 批量刪除

  public function getDelete()
  {
    // 返回一個整形 刪除了幾條數據
    $deleteRows = Article::where('id','>',3)->delete();
    dd($deleteRows);  // 2
  }

2 軟刪除

2.1 準備工作

如果你要實現軟刪除 你應該提前做3件事情:

  1. 添加deleted_at 到模型的 $date 屬性中。

  2. 在模型中使用 Illuminate\Database\Eloquent\SoftDeletes 這個trait

  3. 保證你的數據表中有deleted_at列 如果沒有就添加這個列。

首先我們做第一步和第二步:

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class Article extends Model
{
  // 使用SoftDeletes這個trait
  use SoftDeletes;
  // 白名單
  protected $fillable = ['title', 'body'];
  // dates
  protected $dates = ['deleted_at'];
}

然后我們生成一個遷移文件來增加deleted_at列到數據表:

class InsertDeleteAtIntroArticles extends Migration
{
  /**
   * Run the migrations.
   *
   * @return void
   */
  public function up()
  {
    Schema::table('articles', function (Blueprint $table) {
      $table->softDeletes();
    });
  }
  /**
   * Reverse the migrations.
   *
   * @return void
   */
  public function down()
  {
    Schema::table('articles', function (Blueprint $table) {
      $table->dropSoftDeletes();
    });
  }
}

2.2 實現軟刪除

現在我們就可以刪除一條數據試試啦:

  public function getDelete()
  {
    $article = Article::first();
    $article->delete();
  }

↑ 當我們刪了這條數據后 在數據表中的表示是 deleted_at 不為空 它是一個時間值,當delete_at不為空時 證明這條數據已經被軟刪除了。

2.3 判斷數據是否被軟刪除

if ($article->trashed()){
      echo '這個模型已經被軟刪除了';
    }

2.4 查詢到被軟刪除的數據

有一點需要注意,當數據被軟刪除后 它會自動從查詢數據中排除、就是它無法被一般的查詢語句查詢到。當我們想要查詢軟刪除數據時 可以使用withTrashed方法

  public function getIndex()
  {
    $article = Article::withTrashed()->first();
    if ($article->trashed()){
      echo '被軟刪除了';  // 代碼會執行到這一行
    }
  }

我們還可以使用onlyTrashed,它和withTrashed的區別是 它只獲得軟刪除的數據。

  public function getIndex()
  {
    $articles = Article::onlyTrashed()->where('id','<','10')->get()->toArray();
    dd($articles);
  }

2.5 恢復被軟刪除的數據

  public function getIndex()
  {
    $article = Article::withTrashed()->find(6);
    $article->restore();
  }

2.6 永久刪除數據

  public function getIndex()
  {
    $article = Article::withTrashed()->find(6);
    $article->forceDelete();
  }

關于使用Laravel5.1 框架怎么實現模型軟刪除操作問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

新丰县| 镇坪县| 高陵县| 广德县| 大厂| 东方市| 新河县| 原阳县| 胶州市| 阿城市| 静乐县| 当雄县| 武隆县| 仙居县| 商都县| 连州市| 霍城县| 大渡口区| 台中县| 全椒县| 信宜市| 台南县| 定边县| 麦盖提县| 松阳县| 拜泉县| 光泽县| 南汇区| 芜湖县| 杨浦区| 靖宇县| 平潭县| 通州区| 黄骅市| 霍州市| 镇康县| 墨竹工卡县| 利津县| 神池县| 遂宁市| 明星|