We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58998b8 commit a6ada3bCopy full SHA for a6ada3b
docs/ajax_and_stack.md
@@ -51,6 +51,16 @@ disruptive. You can disable this behavior by calling
51
$renderer = $debugbar->getJavascriptRenderer();
52
$renderer->setAjaxHandlerAutoShow(false);
53
54
+## Fetch
55
+
56
+Fetch API is supported by wrapping `window.fetch` so that the promise is also
57
+passed through to the debugbar AJAX handler.
58
59
+If you find your fetch requests are not showing up in debugbar, you're probably
60
+initializing your JavaScript client library (e.g. Apollo) before debugbar has
61
+loaded, try adding `defer` onto your script tags, or moving them after the
62
+injected debugbar JavaScript.
63
64
## Stacked data
65
66
Some times you need to collect data about a request but the page won't actually
0 commit comments