-1

我正在尝试在 1:M 双向关联中使用原则 2 坚持到拥有方。由于某些奇怪的原因(至少对我来说很奇怪),我没有将accountId值放入插入语句中,因此它失败了。我不确定我在这里是否做错了什么。

任何人都可以指出发生了什么。

** 使用 Zend Framework 2 + ubuntu + mysql。

表 tAccounts 键是accountId并且该表通过外键连接accountId到 tAccountPasswordReset

(拥有方)。

class tAccountPasswordReset {
/**
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
* @ORM\Column(type="integer")
*/
protected $Id;
/** @ORM\Column(type="integer") */
protected $accountId;
.......
.......
/** 
* @ORM\ManyToOne(targetEntity="tAccounts", inversedBy="accountpasswordreset")
* @ORM\JoinColumn(name="accountId", referencedColumnName="accountId")
**/
private $accounts;

(反面)

class tAccounts {
/**
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
* @ORM\Column(type="integer")
*/
protected $accountId;
/** @ORM\Column(type="string") */

…………

/** @ORM\OneToMany(targetEntity="tAccountPasswordReset", mappedBy="accounts") */
private $accountpasswordreset;

public function __construct() {
    /** Get the dependence rowset from the tAccountPasswordReset */
    $this->accountpasswordreset = new ArrayCollection();
}

在 tAccountPaswordReset 中插入一行(我对 accountId 不为 null 持肯定态度

private function setResetToken($accountid) {
    try {
        $token = uniqid().uniqid(); /** Generate a unique token */
        $newReset = new \Entity\Tables\tAccountPasswordReset();
        $newReset->accountId = $accountid;
        $newReset->resetToken = $token;
        $this->entityManager->persist($newReset);
        $this->entityManager->flush();
        return $token;
    } catch (Exception $e) {
        throw $e;
    }
}

(结果)

An exception occurred while executing '
INSERT INTO tAccountPasswordReset (accountId, resetToken, createTime, expTime) 
VALUES (?, ?, ?, ?)' with params [null, "5273f94bd75f15273f94bd7641", "2013-11-01 14:56:11", "2013-11-02 14:56:11"]: SQLSTATE[23000]: 
Integrity constraint violation: 1048 Column 'accountId' cannot be null
4

1 回答 1

0

从这里看起来很简单,您没有将AccountID类型的 Object 设置为tAccountPasswordReset

意味着您需要设置或显式地将tAccounts对象传递给tAccountPasswordReset的函数,该函数正在执行类似于 setter/getter 的操作。

我建议你在tAccountPasswordReset类中做这样的事情

public function getTAccount(){
 return $this->AccountID;
 } 

 public function setTAccount((complete path to this class)/tAccounts $tAccounts){
 $this->AccountID = $tAccounts;
}

然后在您的setResetToken函数中,将 tAccounts 对象设置为像这样

  $newReset->setTAccount(pass tAccounts object here);// if you dont know how to set object here comment below

其余的工作将由 Doctrine 处理。

PS:目前对我来说它看起来不是双向的,但如果确实提到它,我可能会理解它。

于 2013-11-01T21:42:41.793 回答