1

实体

use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Validator\Constraints as Assert;
use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;

/**
 * @ORM\Table(name="_apiKey")
 * @ORM\Entity(repositoryClass="Eve\ProfileBundle\Entity\Repository\apiKeyRepository")
 * @UniqueEntity(fields={"keyID", "vCode", "accountID"}, 
 * message="you already own this api")
 */
class apiKey
{

public function __construct()
{
    // empty
}

// relations start
// relations end

/**
 * @ORM\Column(name="entryID", type="integer")
 * @ORM\Id
 * @ORM\GeneratedValue(strategy="AUTO")
 */
private $entryID;

/**
 * @ORM\Column(name="accountID", type="integer", nullable=false, unique=true)
 */
private $accountID;

/**
 * @ORM\Column(name="keyID", type="integer", nullable=false, unique=true)
 * @Assert\NotBlank(message="keyID cannot be blank")
 */
private $keyID;

/**
 * @ORM\Column(name="vCode", type="string", nullable=false, unique=true)
 * @Assert\NotBlank(message="vCode cannot be blank")
 */
private $vCode;

在数据库中

CREATE TABLE IF NOT EXISTS `_apiKey` (
  `entryID` int(11) NOT NULL AUTO_INCREMENT,
  `accountID` int(11) NOT NULL,
  `keyID` int(11) NOT NULL,
  `vCode` varchar(255) NOT NULL,
  PRIMARY KEY (`entryID`),
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=18 ;

当我尝试添加重复时出现错误

An exception occurred while executing 'INSERT INTO _apiKey (accountID, keyID, vCode) VALUES (?, ?, ?)' with params {"1":38,"2":"1233","3":"123"}:

SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry '38-1233-123' for key 'accountID' 

很好,但我该如何处理呢?“消息选项”在@UniqueEntity()中不起作用我如何在表单错误中显示此错误(无异常)

我想要什么(没有 entryID 的 db 的简单示例)

123 123 123 - add
123 123 1234 - add
123 125 123 - add
123 123 1234 - form-error on inserting
123 123 123 - form-error on inserting
234 123 123 - add
234 123 123 - form-error on inserting
4

2 回答 2

4

密钥“accountID”的重复条目“38-1233-123 ”

如果您想单独检查 accountId 的唯一性,请将其添加到您的类中:

@UniqueEntity(fields={"accountID"}, message="This account is already taken")

这里是检查组合“keyID”、“vCode”、“accountID”的唯一性以及“accountID”单独的唯一性的完整代码:

<?php

// ...

/**
 * @ORM\Table(name="_apiKey")
 * @ORM\Entity(repositoryClass="Eve\ProfileBundle\Entity\Repository\apiKeyRepository")
 * @UniqueEntity(fields={"keyID", "vCode", "accountID"}, message="you already own this api")
 * @UniqueEntity(fields={"accountID"}, message="This account ID is already taken")
 */
class apiKey
{

我不知道您是否看到该错误仅影响字段 accountID,如果您不希望这种行为,只需从您的属性 $accountID 中删除“unique = true”。

如果您只想说组合“keyID”、“vCode”、“accountID”在数据库中必须是唯一的,请按以下方式进行:

/**
 * @ORM\Table(name="_apiKey",
 *      uniqueConstraints = {
 *          @ORM\UniqueConstraint(name="_api_key_key_id_v_code_account_id", columns={"keyID", "vCode", "accountID})
 *      }
 * )
 *
 * ...
 * etc, ...
 */
class apiKey
于 2013-01-27T13:31:33.783 回答
0

麻烦出现在表单类型类中,要使用这种唯一组合,您必须将所有值添加到您想要唯一的字段中,在我的示例中将是

  $builder
            ->add('accountID', 'hidden', array ('data' => $options['acountID']))
            ->add('keyID', 'text')
            ->add('vCode', 'text');

我添加了隐藏字段(accontID)并用数据填充它,然后我得到正确的表单错误错误,如果你不填写会有空值(所以我不知道为什么它不会检查唯一性)

这对我来说是解决方案,但基本上@Sybio 帮助我理解了很多,所以我会检查他的答案作为答案^_^

于 2013-01-28T12:07:52.223 回答