无法找到将两个组件连接在一起的方法。我在第一个组件中有表,需要从第二个列表中获取列表并将其显示为下拉列表。我有机会做到吗?谢谢
P.S。别忘了。我需要在后端获得一个列表。
答案 0 :(得分:1)
您可以使用getOptions()
方法:
public function defineProperties()
{
return [
'country' => [
'title' => 'Country',
'type' => 'dropdown',
'default' => 'us'
]
];
}
public function getCountryOptions()
{
// here you can use DB or Model
return ['us'=>'United states', 'ca'=>'Canada'];
}