我正在努力安装FOS Comment Bundle。我有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”不为空。)
Routes.yaml:
fos_comment_api:
type: rest
resource: '@FOSCommentBundle/Resources/config/routing.yml'
prefix: /api
defaults: { _format: html }
我没有找到任何解决方案。有人知道我该怎么办,或者知道注释线程的其他替代软件包吗?