在我的实体中,我定义了带有回调的字段颜色。只能在“颜色”列表(此const
中的class
)中选择颜色
/**
* @ORM\Entity(repositoryClass="App\Repository\EventTagRepository")
*/
class EventTag
{
const COLORS = [
"primary"=>"primary",
"secondary"=>"secondary",
"success"=> "success",
"danger"=>"danger",
"warning"=>"warning",
"info"=>"info",
"light"=>"light",
"dark"=>"dark"
];
/**
* @ORM\Column(type="string", length=255)
* @Assert\Choice(callback="getColors")
*/
private $color;
public function getColors()
{
return $this::COLORS;
}
在easy-admin中创建表单时,我想在choice
类型选项中访问此回调,以防止用户选择错误的颜色。
EventTag:
class: App\Entity\EventTag
list:
actions: ['-delete']
form:
fields:
- { type: 'group', label: 'Content', icon: 'pencil-alt', columns: 8 }
- 'name'
- { property: 'color', type: 'choice', type_options: { expanded: false, multiple: false, choices: 'colors'} }
不幸的是,在type_options
中,我没有找到访问实体属性的方法,没有搜索getColors()
,IsColors()
,hasColors()
方法,它只能读取字符串。
是否可以通过其他方式进行?