我正在努力安装 FOS 评论包。我有 Symfony v 4.2.1。我按照文档中的说明进行操作:https ://github.com/FriendsOfSymfony/FOSCommentBundle/blob/master/Resources/doc/1-setting_up_the_bundle.md
我只省略了这部分:
assetic:
bundles: [ "FOSCommentBundle" ]
因为assetic 不能与 Symfony ^4 一起工作。我通过以下方式安装资产:bin/console assets:install
我得到那个错误:
LoadException:无法加载资源“@FOSCommentBundle/Resources/config/routing.yml”。确保“FOSCommentBundle”包已正确注册并加载到应用程序内核类中。如果捆绑包已注册,请确保捆绑包路径“@FOSCommentBundle/Resources/config/routing.yml”不为空。)
路线.yaml:
fos_comment_api:
type: rest
resource: '@FOSCommentBundle/Resources/config/routing.yml'
prefix: /api
defaults: { _format: html }
我没有找到任何解决方案。任何人都知道我应该做什么或知道评论线程的任何替代捆绑包?