gpt4 book ai didi

php - Laravel/ Eloquent : how to hook into the deletion process?

转载 作者:行者123 更新时间:2023-11-29 03:59:33 25 4
gpt4 key购买 nike

当一条记录从 my_items_table 中删除时,我想将该记录插入到 my_items_table_archive 中。

我可以在每个 Controller 上执行此操作,但更愿意连接到 Eloquent 模型

有这样的吗?

伪代码:

class MyItem extends Model {
protected function beforeDelete($record) {
MyItemArchive::create($record); // add record the archive
return true; // continue deletion of $record
}
}

有什么想法吗?谢谢!

最佳答案

是的,有一些类似于你的伪代码。

您可以利用 Eloquent Events

下面是一个很好的例子:

protected $dispatchesEvents = [
'deleted' => UserDeleted::class,
'deleting' => UserDeleting::class
];

问题类只需要坚持/关注:Listeners

您也可以使用 Eloquent Observers/观察者模式来获得类似的结果。

告诉我你过得怎么样!

关于php - Laravel/ Eloquent : how to hook into the deletion process?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51743311/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com