6

在 L4 中是否有一种模块化的方式来执行级联软删除?

我的数据库已经设计为使用硬删除来执行此操作,因为所有表都与另一个表相关。但是,我正在使用软删除并且真的不想delete()在我的模型中重载该方法 - 仅仅是因为 (A)模型的数量,以及 (B)delete()当其他模型发生变化时,必须在所有模型中编辑该方法。

任何指针或提示将不胜感激。

4

2 回答 2

10

我已经使用模型事件进行级联删除工作,例如在 Product 模型中我绑定到已删除事件,因此我可以软删除所有关系:

    // Laravel's equivalent to calling the constructor on a model
    public static function boot()
    {
        // make the parent (Eloquent) boot method run
        parent::boot();    

        // cause a soft delete of a product to cascade to children so they are also soft deleted
        static::deleted(function($product)
        {
            $product->images()->delete();
            $product->descriptions()->delete();
            foreach($product->variants as $variant)
            {
                $variant->options()->delete();
                $variant->delete();
            }
        });
    }
于 2013-07-04T16:01:00.083 回答
2

我确实知道这在我的模型中是可能的:

public function delete() {
  ChildTable::where('parent_id', $this->id)->delete();
  ChildTable2::where('parent_id', $this->id)->delete();
  parent::delete();
}

但是对模型或表结构的任何更新都会导致它被追加/编辑……包括其他模型。

于 2013-06-21T20:18:58.373 回答