Laravel5.1 框架模型軟刪除操作實例分析
本文實例講述了Laravel5.1 框架模型軟刪除操作。分享給大家供大家參考,具體如下:
軟刪除是比較實用的一種刪除手段,比如說 你有一本賬 有一筆記錄你覺得不對給刪了 過了幾天發(fā)現(xiàn)不應該刪除,這時候軟刪除的目的就實現(xiàn)了 你可以找到已經被刪除的數(shù)據(jù)進行操作 可以是還原也可以是真正的刪除。
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() { // 返回一個整形 刪除了幾條數(shù)據(jù) $deleteRows = Article::where('id','>',3)->delete(); dd($deleteRows); // 2 }
2 軟刪除
2.1 準備工作
如果你要實現(xiàn)軟刪除 你應該提前做3件事情:
- 添加deleted_at 到模型的 $date 屬性中。
- 在模型中使用 Illuminate\Database\Eloquent\SoftDeletes 這個trait
- 保證你的數(shù)據(jù)表中有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列到數(shù)據(jù)表:
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 實現(xiàn)軟刪除
現(xiàn)在我們就可以刪除一條數(shù)據(jù)試試啦:
public function getDelete() { $article = Article::first(); $article->delete(); }
↑ 當我們刪了這條數(shù)據(jù)后 在數(shù)據(jù)表中的表示是 deleted_at 不為空 它是一個時間值,當delete_at不為空時 證明這條數(shù)據(jù)已經被軟刪除了。
2.3 判斷數(shù)據(jù)是否被軟刪除
if ($article->trashed()){ echo '這個模型已經被軟刪除了'; }
2.4 查詢到被軟刪除的數(shù)據(jù)
有一點需要注意,當數(shù)據(jù)被軟刪除后 它會自動從查詢數(shù)據(jù)中排除、就是它無法被一般的查詢語句查詢到。當我們想要查詢軟刪除數(shù)據(jù)時 可以使用withTrashed方法
public function getIndex() { $article = Article::withTrashed()->first(); if ($article->trashed()){ echo '被軟刪除了'; // 代碼會執(zhí)行到這一行 } }
我們還可以使用onlyTrashed,它和withTrashed的區(qū)別是 它只獲得軟刪除的數(shù)據(jù)。
public function getIndex() { $articles = Article::onlyTrashed()->where('id','<','10')->get()->toArray(); dd($articles); }
2.5 恢復被軟刪除的數(shù)據(jù)
public function getIndex() { $article = Article::withTrashed()->find(6); $article->restore(); }
2.6 永久刪除數(shù)據(jù)
public function getIndex() { $article = Article::withTrashed()->find(6); $article->forceDelete(); }
更多關于Laravel相關內容感興趣的讀者可查看本站專題:《Laravel框架入門與進階教程》、《php優(yōu)秀開發(fā)框架總結》、《php面向對象程序設計入門教程》、《php+mysql數(shù)據(jù)庫操作入門教程》及《php常見數(shù)據(jù)庫操作技巧匯總》
希望本文所述對大家基于Laravel框架的PHP程序設計有所幫助。
相關文章
PHP表單提交后引號前自動加反斜杠的原因及三種辦法關閉php魔術引號
一般空間商提供的服務器空間默認PHP 指令 magic_quotes_gpc是on的,也就是打開的。我們通常用stripslashes() 函數(shù)刪除自動添加的反斜杠。2015-09-09php檢查函數(shù)必傳參數(shù)是否存在的實例詳解
這篇文章主要介紹了php檢查函數(shù)必傳參數(shù)是否存在的實例詳解的相關資料,需要的朋友可以參考下2017-08-08Vagrant(WSL)+PHPStorm+Xdebu 斷點調試環(huán)境搭建
這篇文章主要介紹了Vagrant(WSL)+PHPStorm+Xdebu 斷點調試環(huán)境搭建,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧2019-12-12thinkPHP實現(xiàn)MemCache分布式緩存功能
這篇文章主要介紹了thinkPHP實現(xiàn)MemCache分布式緩存功能的方法,結合實例形式分析了thinkPHP通過修改CacheMemcache.class.php源文件實現(xiàn)分布式緩存功能的具體實現(xiàn)技巧,需要的朋友可以參考下2016-03-03