热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

LaravelEloquent一对多的morph没有值的问题

现在有

现在有




1
Topic

,

1
Post

,




1
Comment

三个模型, Comment相对Topic和Post是一对多的关系, 也就是说每个Topic和Post都可以有多条Comment.
但现在尝试插入Comment时, 发现并没有插入对应的

1
commentable_id

1
commentable_type

???
报错如下:

1
SQLSTATE[HY000]: General error: 1364 Field 'commentable_id' doesn't have a default value (SQL: insert into `comments` (`content`, `updated_at`, `created_at`)

App\Models\Comment

1
2
3
4
public function commentable()

{

    return $this->morphTo();

}

App\Models\Topic

1
2
3
4
public function comments()

{

    return $this->morphMany('App\Models\Comment', 'commentable');

}

App\Models\Post

1
2
3
4
public function comments()

{

    return $this->morphMany('App\Models\Comment', 'commentable');

}

Comments数据表中有

1
$table->morphs('commentable');

.

请问问题到底出在哪里?`


   



推荐阅读
author-avatar
倩女墨镜aaaaa_259
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有