英文:
Symfony 6 debug toolbar not showing
问题
我正在使用Symfony 6.3,但未看到调试工具栏。
我已安装web-profiler和debug-bundle。我的env文件设置为APP_ENV=dev。我的web_profiler.yaml设置为toolbar=true。
还有什么我需要检查的吗?
英文:
I'm using Symfony 6.3 but not seeing the debug toolbar.
I have the web-profiler and debug-bundle installed. My env file is set to APP_ENV=dev. My web_profiler.yaml is set to toolbar=true.
What else might I need to check here?
答案1
得分: 4
工具栏将附加在</body>
标签关闭之前。因此,它只会在您的HTML文档包含<body>
时显示。
英文:
The toolbar is appended just before the closing of the <body>
tag. Therefore, it will only show if your HTML document contains a <body>
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论