symfony - doctrine 一对多关系 可选
ringa_lee
ringa_lee 2017-05-16 16:43:46
0
1
451

现存Article,Category两个entity,关系为onetomany;
其中article不是必须对应category,如果article不存在对应的分类,那么category_id =0;

那么问题来了

$article = new Article();
$article->setTitle('This is a test article');
//...
$em->persist($article);
$em->flush();

报错如下,category_id 不能为空

  [Doctrine\DBAL\Driver\PDOException]
  SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'category_id' cannot be null



  [PDOException]
  SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'category_id' cannot be null

这种非必须的Association怎么设置呢

ringa_lee
ringa_lee

ringa_lee

全部回复(1)
曾经蜡笔没有小新

把 Article::$category 的 nullable 属性设为 true 就可以了

``
class Article
{

/**
 * @ORM\OneToMany(targetEntity="AppBundle\Entity\Category", nullable=true)
 */
protected $category;

}
``

热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!