我正在使用Symfony 4.3和Sonata 3.x版本。
我正在尝试在自定义页面中创建自定义路线,但出现错误:
An exception has been thrown during the rendering of a template ("unable to find the route `admin.photocall|admin.photocall_gallery.moderate`")
我有一个与X实体具有OneToMany关系的X实体。 代码说明:
class XAdmin extends AbstractAdmin
{
[...]
protected function configureSideMenu(MenuItemInterface $menu, $action, AdminInterface $childAdmin = null)
{
$admin = $this->isChild() ? $this->getParent() : $this;
$id = $admin->getRequest()->get('id');
if ($this->isGranted('LIST')) {
$menu->addChild('Galerie', [
'uri' => $admin->generateUrl('admin.photocall_gallery.list', ['id' => $id])
]);
}
}
}
然后是我的YAdmin:
class YAdmin extends AbstractAdmin
{
protected function configureListFields(ListMapper $listMapper)
{
$listMapper->add('_action', null, [
'actions' => [
'clone' => [
'template' => 'admin/PhotocallListAdmin/__list_action_moderate.html.twig'
]
]
])
;
}
protected function configureRoutes(RouteCollection $collection)
{
if ($this->isChild()) {
$collection->clearExcept(['list', 'moderate']);
$collection->add($collection->getBaseCodeRoute().'.moderate', 'moderate');
return;
}
}
}
因此,我在其中添加了一个带有如下模板的动作:
<a class="btn btn-sm" href="{{ admin.generateObjectUrl('moderate', object) }}">
{% if not object.ismoderate %}
Moderate
{% else %}
Undo moderation
{% endif%}
</a>
因此该错误表明它找不到路由admin.photocall | admin.photocall_gallery.moderate。但是,当我添加适度的路由后在YAdmin中转储$ collection时,我有两个元素:
admin.photocall | admin.photocall_gallery.list(当前页面)
admin.photocall | admin.photocall_gallery.moderate
我搜索了,但看起来没有其他人这样做。
感谢您的帮助
答案 0 :(得分:0)
我写了Gaska的评论来解决此问题。
我只需要添加:
$collection->add('moderate', 'moderate');
,然后清除缓存。
谢谢他