<i id='u2HNN'><tr id='u2HNN'><dt id='u2HNN'><q id='u2HNN'><span id='u2HNN'><b id='u2HNN'><form id='u2HNN'><ins id='u2HNN'></ins><ul id='u2HNN'></ul><sub id='u2HNN'></sub></form><legend id='u2HNN'></legend><bdo id='u2HNN'><pre id='u2HNN'><center id='u2HNN'></center></pre></bdo></b><th id='u2HNN'></th></span></q></dt></tr></i><div id='u2HNN'><tfoot id='u2HNN'></tfoot><dl id='u2HNN'><fieldset id='u2HNN'></fieldset></dl></div>
    <bdo id='u2HNN'></bdo><ul id='u2HNN'></ul>

<legend id='u2HNN'><style id='u2HNN'><dir id='u2HNN'><q id='u2HNN'></q></dir></style></legend>
    <tfoot id='u2HNN'></tfoot>

      <small id='u2HNN'></small><noframes id='u2HNN'>

    1. 教义一对多关系不会保存 - 违反完整性约束

      Doctrine One-To-Many Relationship Won#39;t Save - Integrity Constraint Violation(教义一对多关系不会保存 - 违反完整性约束)

      • <legend id='X9sDW'><style id='X9sDW'><dir id='X9sDW'><q id='X9sDW'></q></dir></style></legend>
          <bdo id='X9sDW'></bdo><ul id='X9sDW'></ul>
        • <tfoot id='X9sDW'></tfoot>
                <tbody id='X9sDW'></tbody>

              <small id='X9sDW'></small><noframes id='X9sDW'>

                <i id='X9sDW'><tr id='X9sDW'><dt id='X9sDW'><q id='X9sDW'><span id='X9sDW'><b id='X9sDW'><form id='X9sDW'><ins id='X9sDW'></ins><ul id='X9sDW'></ul><sub id='X9sDW'></sub></form><legend id='X9sDW'></legend><bdo id='X9sDW'><pre id='X9sDW'><center id='X9sDW'></center></pre></bdo></b><th id='X9sDW'></th></span></q></dt></tr></i><div id='X9sDW'><tfoot id='X9sDW'></tfoot><dl id='X9sDW'><fieldset id='X9sDW'></fieldset></dl></div>
              1. 本文介绍了教义一对多关系不会保存 - 违反完整性约束的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                我正在尝试使用 Doctrine ORM 关联.我已经阅读了几个教程和在线文档,但它不起作用,老实说,我不确定我在这里做错了什么.似乎我对 Doctrine 的实验非常成功或失败.任何帮助将不胜感激.

                I'm attempting to use Doctrine ORM Associations. I've read several tutorials and the online docs, but it's not working, and I'm honestly not sure what I'm doing wrong here. Seems like my experiments with Doctrine are pretty hit or miss. Any assistance would be appreciated.

                我想要一个 User 实体和 UserHistory 实体,它有一个用户的多行.这对我来说听起来像是一对多.我不一定需要它是双向的.

                I'd like to have a User entity and UserHistory entity, which has multiple rows for a single User. That to me sounds like One-To-Many. I don't necessarily need it to be bidirectional.

                我遇到的问题是向用户添加历史记录项会导致保存用户时出错,因为 user_id 列未在 user_history 表中设置.

                The problem I'm having is adding a history item to a user results in an error when the user is saved, because the user_id column is not set in the user_history table.

                实体:

                # EntityUser.php
                <?php
                namespace ApplicationEntity;
                
                use DoctrineORMMapping as ORM;
                use DoctrineCommonCollectionsArrayCollection;
                
                /**
                 * @ORMEntity
                 */
                class User
                {
                    /**
                     * @ORMId
                     * @ORMGeneratedValue(strategy="AUTO")
                     * @ORMColumn(type="integer")
                     */
                    protected $id;
                
                    /**
                     * @ORMColumn(type="string",length=255)
                     */
                    protected $username;
                
                    /**
                     * @ORMOneToMany(targetEntity="UserHistory", mappedBy="user", cascade={"persist","remove"})
                     * @ORMJoinColumn(name="id", referencedColumnName="user_id")
                     */
                    protected $history;
                
                    public function __construct()
                    {
                        $this->setHistory(new ArrayCollection());
                    }
                
                    public function getHistory()
                    {
                        return $this->history;
                    }
                }
                
                # EntityUserHistory.php
                <?php
                namespace ApplicationEntity;
                
                use DoctrineORMMapping as ORM;
                
                /**
                 * @ORMEntity
                 * @ORMTable(name="user_history")
                 */
                class UserHistory
                {
                    /**
                     * @ORMId
                     * @ORMGeneratedValue(strategy="AUTO")
                     * @ORMColumn(type="integer")
                     */
                    protected $id;
                
                    /**
                     * @ORMManyToOne(targetEntity="User")
                     * @ORMJoinColumn(name="user_id", referencedColumnName="id", nullable=false)
                     */
                    protected $user;
                
                    public function getUser()
                    {
                        return $this->user;
                    }
                }
                

                在我的控制器中,我正在尝试:

                In my controller, I'm trying this:

                    $em = $this->getUserService()->getEntityManager();
                    $user = $em->find('PicparaEntityUser', 1);
                    $history = new UserHistory();
                    $user->getHistory()->add($history);
                    $em->persist($user);
                    $em->flush();
                

                所有这些都会导致违反完整性约束.

                All of which results in an integrity constraint violation.

                DoctrineDBALDBALException

                DoctrineDBALDBALException

                文件:/myproject/vendor/doctrine/dbal/lib/Doctrine/DBAL/DBALException.php:91

                File: /myproject/vendor/doctrine/dbal/lib/Doctrine/DBAL/DBALException.php:91

                留言:

                使用参数 [null] 执行INSERT INTO user_history (user_id) VALUES (?)"时发生异常:

                An exception occurred while executing 'INSERT INTO user_history (user_id) VALUES (?)' with params [null]:

                SQLSTATE[23000]:违反完整性约束:1048 列user_id"不能为空

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

                就像我说的那样,我在 SO 上四处挖掘,用谷歌搜索,尝试在注释中移动内容.这是我所得到的.不知道我做错了什么.有人可以帮忙吗?

                Like I said, I've dug around here on SO, googled, tried moving things around in the annotations. This is as far as I get. Not sure what I'm doing wrong. Can anyone help?

                推荐答案

                问题是您没有在历史类中设置用户实体.关联的东西不会自动执行此操作.

                The problem is that you are not setting the user entity in your history class. The association stuff does not do this automatically.

                class UserHistory
                {
                    public function setUser($user) { $this->user = $user; }
                
                class User
                {
                    public function addHistory($history)
                    {
                        $this->history->add($history);
                        $history->addUser($this);  // *** This is what you are missing
                    }
                
                // In your controller class
                $user->addHistory($history);
                

                这篇关于教义一对多关系不会保存 - 违反完整性约束的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                DeepL的翻译效果还是很强大的,如果我们要用php实现DeepL翻译调用,该怎么办呢?以下是代码示例,希望能够帮到需要的朋友。 在这里需要注意,这个DeepL的账户和api申请比较难,不支持中国大陆申请,需要拥有香港或者海外信用卡才行,没账号的话,目前某宝可以
                PHP通过phpspreadsheet导入Excel日期,导入系统后,全部变为了4开头的几位数字,这是为什么呢?原因很简单,将Excel的时间设置问文本,我们就能看到该日期本来的数值,上图对应的数值为: 要怎么解决呢?进行数据转换就行,这里可以封装方法,或者用第三方的
                mediatemple - can#39;t send email using codeigniter(mediatemple - 无法使用 codeigniter 发送电子邮件)
                Laravel Gmail Configuration Error(Laravel Gmail 配置错误)
                Problem with using PHPMailer for SMTP(将 PHPMailer 用于 SMTP 的问题)
                Issue on how to setup SMTP using PHPMailer in GoDaddy server(关于如何在 GoDaddy 服务器中使用 PHPMailer 设置 SMTP 的问题)
                • <bdo id='ZvU6T'></bdo><ul id='ZvU6T'></ul>

                    <small id='ZvU6T'></small><noframes id='ZvU6T'>

                        <tbody id='ZvU6T'></tbody>
                    • <tfoot id='ZvU6T'></tfoot>
                        <i id='ZvU6T'><tr id='ZvU6T'><dt id='ZvU6T'><q id='ZvU6T'><span id='ZvU6T'><b id='ZvU6T'><form id='ZvU6T'><ins id='ZvU6T'></ins><ul id='ZvU6T'></ul><sub id='ZvU6T'></sub></form><legend id='ZvU6T'></legend><bdo id='ZvU6T'><pre id='ZvU6T'><center id='ZvU6T'></center></pre></bdo></b><th id='ZvU6T'></th></span></q></dt></tr></i><div id='ZvU6T'><tfoot id='ZvU6T'></tfoot><dl id='ZvU6T'><fieldset id='ZvU6T'></fieldset></dl></div>

                          <legend id='ZvU6T'><style id='ZvU6T'><dir id='ZvU6T'><q id='ZvU6T'></q></dir></style></legend>