[sonata admin] argument "$code" of method
Posted fsong
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[sonata admin] argument "$code" of method相关的知识,希望对你有一定的参考价值。
按照这里,在 AppBundle
中的Controller创建了 CategoryAdmin 类,当运行
php bin/console server:start
出现
Cannot autowire service "AppBundleControllerCategoryAdmin": argument "$code" of method "SonataAdminBundleAdminAbstractAdmin::__construct()" has no
type-hint, you should configure its value explicitly.
通过搜索资料,找到 Empty Dashboard Symfony3 sonata adminBundle 最后比对才发现,需要把 src/AppBundle/Controller/CategoryAdmin.php
放入到 src/AppBundle/Admin/CategoryAdmin.php
,
然后再运行 php bin/console server:start
就启动成功了
最终的效果
以上是关于[sonata admin] argument "$code" of method的主要内容,如果未能解决你的问题,请参考以下文章
Sonata 管理包:无法删除与 sonata_type_admin 的关系
服务“admin.category”依赖于不存在的服务“sonata.admin.manager.orm”
有没有办法确定 Sonata\AdminBundle\Admin\Admin::configureFormFields() 中的当前操作(创建或编辑)?