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

      1. <small id='WHENq'></small><noframes id='WHENq'>

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

          <bdo id='WHENq'></bdo><ul id='WHENq'></ul>

        Doctrine2 ManyToMany 不执行侦听器事件

        Doctrine2 ManyToMany doesn#39;t execute listener events(Doctrine2 ManyToMany 不执行侦听器事件)

          <legend id='zvoT7'><style id='zvoT7'><dir id='zvoT7'><q id='zvoT7'></q></dir></style></legend>
            • <bdo id='zvoT7'></bdo><ul id='zvoT7'></ul>

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

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

                  <tbody id='zvoT7'></tbody>

                • <tfoot id='zvoT7'></tfoot>
                • 本文介绍了Doctrine2 ManyToMany 不执行侦听器事件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我有以下数据库结构:

                  User     > UserRole      < Role
                  UserId     UserRoleId      RoleId
                  Name       UserId          Name
                             RoleId
                             Active
                             CreationDate
                  

                  而我的学说2类是这样定义的:

                  And my doctrine2 classes are defined like this:

                  /**
                   * @var Roles
                   *
                   * @ORMManyToMany(targetEntity="SecRole")
                   * @ORMJoinTable(name="SEC_USER_ROLE",
                   *      joinColumns={@ORMJoinColumn(name="SEC_USER_ID", referencedColumnName="SEC_USER_ID")},
                   *      inverseJoinColumns={@ORMJoinColumn(name="SEC_ROLE_ID", referencedColumnName="SEC_ROLE_ID")}
                   *      )
                   */
                  private $userRoles;
                  
                  public function __construct() {
                    parent::__construct();
                    $this->userRoles = new DoctrineCommonCollectionsArrayCollection();
                  }
                  
                  public function addSecRole(myEntitySecRole $role)
                  {
                    $exists = $this->userRoles->exists(function($key, $elem) use($role) {
                        return isset($elem) && $elem->getSecRoleCode() == $role->getSecRoleCode();
                      });
                    return !$exists && $this->userRoles->add($role);
                  }
                  

                  要向用户添加新角色,我执行以下操作:

                  To add a new role to the user, I do:

                    $r = $rolerep->findOneBySecRoleCode('SystemAdmin');
                    $u = $userrep->findOneByUserLogin('sysadmin');
                    if (isset($r) && isset($u))
                    {
                      if ($u->addSecRole($r)) {
                        $em->flush();
                      }
                    }
                  

                  除了一件事外,一切正常.没有为 SecUserRole 实体调用生命周期事件!.我的怀疑是,由于 Doctrine 正在为自己添加"新的 SecUserRole 记录,因此它不会为它调用事件.

                  And everything works fine EXCEPT for one thing. The lifecycle events are not being called for SecUserRole entity!. And my suspicion is that since Doctrine is "adding" the new SecUserRole record for itself, then it doesn't call the events for it.

                  我在听 prePersist、preUpdate、preDelete.也没有得到新的记录.我试过onFlush,但似乎也没有得到它.

                  I'm listening to prePersist, preUpdate, preDelete. Neither get the new record. I tried onFlush, but it seems it doesn't get it either.

                  有什么我遗漏的地方,我该如何解决?自己做插入?当然这是一个解决方案,但这让我自己也做查询,这是我不想做的事情.

                  Is there something I'm missing, how could I solve this? doing the inserts by myself? Sure that's a solution, but that leaves me to do also the queries myself, which is something I don't want to do.

                  好的,提前致谢林凯

                  推荐答案

                  到目前为止,还没有找到最好的方法,但似乎 Doctrine 假设您的连接表将自动生成",因此它假设它没有也不需要超过两个加入键(UserId、RoleId).

                  So far, haven't found the best way BUT seems that Doctrine assumes that your Join Table will be "autogenerated" so it assumes that it doesn't have nor need more than the two joining keys (UserId, RoleId).

                  我为解决这个问题所做的是停止使用多对多,而是使用与 SecUserRole 表的单对多关系.因此,在 addSecRole 方法内部,我插入了新对象,然后在外部刷新了 EM(如上面的示例).

                  What I did to solve it was to stop using a ManyToMany, but use a OneToMany relationship to SecUserRole table. So inside the addSecRole method, I inserted the new object and then flushed the EM on the outside (like the example above).

                  这似乎是我能做的最好的方法.我从这个 http://www.zendcasts.com/ 那里得到了一个想法,其中有一个专为 ManyToMany 制作的演员表映射.

                  It seems that's the best way I could do. I got the idea from this http://www.zendcasts.com/ where there is one cast specially for ManyToMany mappings.

                  好吧,希望对大家有帮助

                  Well, hope this helps to all

                  这篇关于Doctrine2 ManyToMany 不执行侦听器事件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

                  相关文档推荐

                  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 的问题)

                  <tfoot id='ExCTp'></tfoot>
                  • <legend id='ExCTp'><style id='ExCTp'><dir id='ExCTp'><q id='ExCTp'></q></dir></style></legend>

                            <tbody id='ExCTp'></tbody>
                        1. <i id='ExCTp'><tr id='ExCTp'><dt id='ExCTp'><q id='ExCTp'><span id='ExCTp'><b id='ExCTp'><form id='ExCTp'><ins id='ExCTp'></ins><ul id='ExCTp'></ul><sub id='ExCTp'></sub></form><legend id='ExCTp'></legend><bdo id='ExCTp'><pre id='ExCTp'><center id='ExCTp'></center></pre></bdo></b><th id='ExCTp'></th></span></q></dt></tr></i><div id='ExCTp'><tfoot id='ExCTp'></tfoot><dl id='ExCTp'><fieldset id='ExCTp'></fieldset></dl></div>
                        2. <small id='ExCTp'></small><noframes id='ExCTp'>

                          • <bdo id='ExCTp'></bdo><ul id='ExCTp'></ul>