gpt4 book ai didi

symfony - 无法找到模板 "SonataAdminBundle:CRUD:list__action_show.html.twig"

转载 作者:行者123 更新时间:2023-12-04 04:42:42 24 4
gpt4 key购买 nike

错误显示:

Unable to find template "SonataAdminBundle:CRUD:list__action_show.html.twig" in SonataAdminBundle:CRUD:base_list_field.html.twig at line 23.

为仅显示列表配置实体(删除创建、编辑和删除路由)并显示此错误,我在奏鸣曲管理包中找到此模板但不存在,请帮助我解决此问题。

最佳答案

真的没有模板叫:SonataAdminBundle:CRUD:list__action_show.html.twig
您的问题不在于路由,而在于在 configureListFields 中声明错误的内联操作方法。内联操作应该被称为 view所以SonataAdminBundle:CRUD:list__action_view.html.twig将被调用。

内联操作应该像这样声明:

protected function configureListFields(ListMapper $listMapper)
{
$listMapper
//... some other fields ...

// add "show" link in each row of table
->add('_action', 'actions', array(
'actions' => array(
'view' => array(),
)
))
;
}

关于symfony - 无法找到模板 "SonataAdminBundle:CRUD:list__action_show.html.twig",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18661500/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com