这是我原来问题的后续问题: Best strategy for migrating mysql enums to doctrine entities with symfony2?
我已成功按照此处的说明添加枚举数据类型:http://docs.doctrine-project.org/projects/doctrine-orm/en/2.0.x/cookbook/mysql-enums.html 更具体地说,我使用后一部分的解决方案2,我在其中创建了一个基本的EnumType类,然后将它扩展为:
<?php
namespace CP\AdminBundle\DataTypes;
class EnumContactBasicGender extends EnumType
{
protected $name = 'EnumContactBasicGender';
protected $values = array('m','f');
}
我的EnumType类看起来像:
<?php
namespace CP\AdminBundle\DataTypes;
use Doctrine\DBAL\Types\Type;
use Doctrine\DBAL\Platforms\AbstractPlatform;
abstract class EnumType extends Type
{
protected $name;
protected $values = array();
public function getSqlDeclaration(array $fieldDeclaration, AbstractPlatform $platform)
{
$values = array_map(function($val) { return "'".$val."'"; }, $this->values);
return "ENUM(".implode(", ", $values).") COMMENT '(DC2Type:".$this->name.")'";
}
public function convertToPHPValue($value, AbstractPlatform $platform)
{
return $value;
}
public function convertToDatabaseValue($value, AbstractPlatform $platform)
{
if (!in_array($value, $this->values)) {
throw new \InvalidArgumentException("Invalid enum value given: '".$this->value."' for enum: '".$this->name."'");
}
return $value;
}
public function getName()
{
return $this->name;
}
}
然后我注册了这样的枚举:
<?php
namespace CP\AdminBundle;
use Doctrine\DBAL\Types\Type;
use Symfony\Component\HttpKernel\Bundle\Bundle;
class CPAdminBundle extends Bundle
{
public function boot()
{
$em = $this->container->get('doctrine.orm.entity_manager');
Type::addType('EnumContactBasicGender', 'CP\AdminBundle\DataTypes\EnumContactBasicGender');
Type::addType('EnumContactBasicType', 'CP\AdminBundle\DataTypes\EnumContactBasicType');
$em->getConnection()->getDatabasePlatform()->registerDoctrineTypeMapping('EnumContactBasicGender','EnumContactBasicGender');
$em->getConnection()->getDatabasePlatform()->registerDoctrineTypeMapping('EnumContactBasicType','EnumContactBasicType');
}
}
当我运行命令 ./ app / console doctrine:generate:entities CP 时,它可以运行!它使用新的枚举数据类型创建我的实体,它创建了没有问题的setter和getter,我的一个实体看起来像这样:
<?php
namespace CP\AdminBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
use Doctrine\Common\Collections\ArrayCollection;
/**
* CP\AdminBundle\Entity\ContactBasic
*
* @ORM\Table(name="contacts_basics")
* @ORM\Entity(repositoryClass="CP\AdminBundle\Entity\ContactBasicRepository")
*/
class ContactBasic
{
/** Field #1 (contacts_id) **/
/**
* @var integer $contacts_id
* @ORM\Column(type="integer",nullable=false)
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
*/
private $contacts_id;
/** enum ('m','f') **/
/**
* @ORM\Column(type="EnumContactBasicGender",nullable=false)
*/
private $gender;
/** enum ('non-customer','customer','blacklisted') **/
/**
* @ORM\Column(type="EnumContactBasicType",nullable=false)
*/
private $type;
/** more omitted properties here **/
/**
* Set gender
*
* @param EnumContactBasicGender $gender
*/
public function setGender(\EnumContactBasicGender $gender)
{
$this->gender = $gender;
}
/**
* Get gender
*
* @return EnumContactBasicGender
*/
public function getGender()
{
return $this->gender;
}
/**
* Set type
*
* @param EnumContactBasicType $type
*/
public function setType(\EnumContactBasicType $type)
{
$this->type = $type;
}
/**
* Get type
*
* @return EnumContactBasicType
*/
public function getType()
{
return $this->type;
}
/** more omitted setters and getters here **/
}
我的问题出现在我创建一个夹具加载器时,我不知道如何设置任何枚举值以将它们保存到数据库中,到目前为止我的夹具加载器类看起来像这样:
<?php
namespace CP\AdminBundle\DataFixtures\ORM;
use Doctrine\Common\DataFixtures\FixtureInterface;
use Doctrine\Common\Persistence\ObjectManager;
use CP\AdminBundle\Entity\ContactBasic;
use CP\AdminBundle\DataTypes\EnumContactBasicGender;
use CP\AdminBundle\DataTypes\EnumContactBasicType;
class ContactBasicLoader implements FixtureInterface
{
public function load(ObjectManager $manager)
{
$contact = new ContactBasic();
// $contact->setGender(new EnumContactBasicGender());
$contact->setGender('m');
// $contact->setType(new EnumContactBasicType());
$contact->setType('customer');
$manager->persist($contact);
$manager->flush();
}
}
当我运行 ./ app / console doctrine:fixtures:load 时,我收到以下错误:
Catchable Fatal Error: Argument 1 passed to CP\AdminBundle\Entity\ContactBasic::setGender() must be an instance of EnumContactBasicGender, string given
但如果我像上面的注释行一样传递类,我也会收到错误。
有人可以解释我需要如何设置所需的值吗?
答案 0 :(得分:1)
Doctrine没有完全支持枚举。枚举类型看起来像PRO,但没有人以这种方式使用枚举。解决方法是在具有整数值的实体中设置一些静态变量,并将枚举字段设置为整数类型。
根据您的问题,我将更改性别的设置者:
此致 最大
答案 1 :(得分:1)
我遇到了一个非常类似的问题,我通过在XXXEnumType类中添加相同的值数组但公共和静态来解决,这样我在一个地方指定了我的枚举的内容,从每个地方和foreach访问它它:)
但首先,检查你是否在app / config / config.yml中添加了my_foo_type:
# Doctrine Configuration
doctrine:
dbal:
driver: %database_driver%
host: %database_host%
port: %database_port%
dbname: %database_name%
user: %database_user%
password: %database_password%
charset: UTF8
types:
my_foo_type: use XXX\DBAL\XXXEnumType
mapping_types:
enum: string
<?php
namespace XXX\DBAL;
class XXXEnumType extends EnumType
{
protected $name = 'enum_xxx';
protected $values = array('first', 'second', 'last');
public static $static_name = 'enum_xxx';
public static $static_values = array('first', 'second', 'last');
public function getValues()
{
return $this->values;
}
}
从我项目的其他地方我可以做到:
use XXX\DBAL\XXXEnumType;
foreach (XXXEnumType::$static_values as $value)
{
//do some stuff
}
希望它有所帮助,
Linuxatico