我使用的是Sonata Admin Bundle和Sumfony 2.3.3。我有一个产品表和一个品牌表。品牌ID放在产品表中。现在,当我显示产品表时,我需要显示品牌名称而不是品牌ID,这应该来自品牌表。我怎样才能做到这一点?请帮我。感谢
protected function configureListFields(ListMapper $listMapper)
{
$listMapper
->addIdentifier('product_id')
->add('product_name')
->add('brand_id')
;
}
答案 0 :(得分:0)
我认为这可行:$listMapper->add('brand.name');