Symfony - link 通过表单将一个主要实体转换为第二个实体
Symfony - link one main entity to a second one through a form
我目前使用的学说是错误的,因为当我在我的实体中有一个 choiceType 时,我使用这个:
/**
* @ORM\Column(type="integer")
*/
private $type;
在我的构建器中加上:
->add('type', ChoiceType::class, ['choices' => ['Pattern' => 0, 'Image' => 1]])
我现在想要一些更干净的东西,并在我的数据库中有另一个实体可以链接到这个主要实体。这是我所做的。
创建了一个 "category" 实体(并在数据库中创建):
/**
* @ORM\Entity(repositoryClass="App\Repository\CategoryRepository")
* @ORM\Table(name="vipbox_mep_category")
*/
class Category {
/**
* @ORM\Id
* @ORM\Column(type="integer")
* @ORM\GeneratedValue(strategy="AUTO")
*/
private $id;
/**
* @ORM\Column(type="string", length=255)
*/
private $category;
/**
* @return mixed
*/
public function getCategory()
{
return $this->category;
}
/**
* @param mixed $category
*/
public function setCategory($category): void
{
$this->category = $category;
}
}
将我的主要实体链接到第二个(使用 getter 和 setter):
/**
* @ORM\OneToOne(targetEntity="App\Entity\Category")
*/
private $category;
将我的类别添加到我的表单中:
->add('category', CategoryType::class, ['required' => true, 'label' => 'Category'])
我的类别的扩展抽象类型形式:
class CategoryType extends AbstractType
{
/**
* @var RouterInterface $route
*/
private $router;
/**
* @param RouterInterface $router
*/
public function __construct(RouterInterface $router)
{
$this->router = $router;
}
/**
* {@inheritdoc}
*/
public function configureOptions(OptionsResolver $resolver)
{
$resolver->setDefaults([
'required' => true,
'label' => 'Category'
]);
}
/**
* {@inheritdoc}
*/
public function getParent()
{
return ChoiceType::class;
}
}
使用文本示例数据(2 行)
填充了我的类别 table
- 测试显示我的表格,我计算了,但我有一个空的 choiceType:
我知道我在路上错过了 one/multiple 东西,有什么线索吗?
假设您已经在类别 table 中保存了一些数据来填充您的下拉列表,只需将步骤 3 更改为:
->add('category', CategoryType::class, ['required' => true, 'label' => 'Category'])
对此:
->add('category', EntityType::class, [
'class' => Category::class,
'required' => true,
'label' => 'Category',
])
EntityType
还有许多其他选项可用,请参阅 docs。
我目前使用的学说是错误的,因为当我在我的实体中有一个 choiceType 时,我使用这个:
/**
* @ORM\Column(type="integer")
*/
private $type;
在我的构建器中加上:
->add('type', ChoiceType::class, ['choices' => ['Pattern' => 0, 'Image' => 1]])
我现在想要一些更干净的东西,并在我的数据库中有另一个实体可以链接到这个主要实体。这是我所做的。
创建了一个 "category" 实体(并在数据库中创建):
/** * @ORM\Entity(repositoryClass="App\Repository\CategoryRepository") * @ORM\Table(name="vipbox_mep_category") */ class Category { /** * @ORM\Id * @ORM\Column(type="integer") * @ORM\GeneratedValue(strategy="AUTO") */ private $id; /** * @ORM\Column(type="string", length=255) */ private $category; /** * @return mixed */ public function getCategory() { return $this->category; } /** * @param mixed $category */ public function setCategory($category): void { $this->category = $category; } }
将我的主要实体链接到第二个(使用 getter 和 setter):
/** * @ORM\OneToOne(targetEntity="App\Entity\Category") */ private $category;
将我的类别添加到我的表单中:
->add('category', CategoryType::class, ['required' => true, 'label' => 'Category'])
我的类别的扩展抽象类型形式:
class CategoryType extends AbstractType { /** * @var RouterInterface $route */ private $router; /** * @param RouterInterface $router */ public function __construct(RouterInterface $router) { $this->router = $router; } /** * {@inheritdoc} */ public function configureOptions(OptionsResolver $resolver) { $resolver->setDefaults([ 'required' => true, 'label' => 'Category' ]); } /** * {@inheritdoc} */ public function getParent() { return ChoiceType::class; } }
使用文本示例数据(2 行)
填充了我的类别 table
- 测试显示我的表格,我计算了,但我有一个空的 choiceType:
我知道我在路上错过了 one/multiple 东西,有什么线索吗?
假设您已经在类别 table 中保存了一些数据来填充您的下拉列表,只需将步骤 3 更改为:
->add('category', CategoryType::class, ['required' => true, 'label' => 'Category'])
对此:
->add('category', EntityType::class, [
'class' => Category::class,
'required' => true,
'label' => 'Category',
])
EntityType
还有许多其他选项可用,请参阅 docs。