有没有像
这样的网址http://mysymfony.app/_profiler/LAST_ID?panel=db ???
在配置json API时没有Symfony配置文件页脚,每次返回概述需要花费时间。
答案 0 :(得分:1)
我知道没有办法做到这一点。我检查了the bundle,其中no route似乎涵盖了这一点。
然而,对我来说似乎有道理,你可以为它写下自己的路线和动作。启动here,然后我认为您的操作的基本逻辑将如下所示
$token = array_pop($this->profiler->find(null, null, 1, null, null, null));
return new RedirectResponse(
$this->generator->generate(
'_profiler',
array('token' => $token, 'panel' => 'db')
),
302,
array('Content-Type' => 'text/html')
);
答案 1 :(得分:1)
应该有一个响应标头:“ X-Debug-Token-Link”,它是到最新分析器的直接链接。您可以在每次请求后在google chrome devtools中进行检查。