我有三个模型:User
has-many Post
has-many Comment
。当我删除用户时,我希望自动删除所有相关帖子以及与这些帖子相关的评论。为了实现这一点,我在User
和Post
模型中有以下代码:
// User
protected static function boot() {
parent::boot();
static::deleting(function($user) {
$user->posts()->delete();
});
}
// Post
protected static function boot() {
parent::boot();
static::deleting(function($post) {
$post->comments()->delete();
});
}
当我删除用户时,他的所有帖子都会被删除,但是会保留评论。为什么会这样?
答案 0 :(得分:1)
你下次尝试过吗?
// User
protected static function boot() {
parent::boot();
static::deleting(function($user) {
foreach ($user->posts() as $post)
{
$post->comments()->delete();
}
$user->posts()->delete();
});
顺便说一下,这应该是删除级联的数据库模式,你不需要任何模型代码来删除子项。
答案 1 :(得分:1)
如果您使用数据库架构来实现这一点,那就更好了。它更快,没有“最大功能嵌套级别”的错误
public function up()
{
Schema::create('comments', function(Blueprint $table)
{
$table->increments('id');
$table->integer('post_id');
$table->string('comment');
});
Schema::table('comments', function(Blueprint $table){
$table->foreign('post_id')->references('id')->on('posts')->onDelete('cascade');
});
}