I was trying to trace a Method call using the client, and in the network tab when I tried to view the payload, I got this:
Anyone seen this or know how to enable JavaScript in the client?
I was trying to trace a Method call using the client, and in the network tab when I tried to view the payload, I got this:
Anyone seen this or know how to enable JavaScript in the client?
AFAIK, Network Preview in devtools doesn’t render SPAs that require js to render - only static HTML. You can see the the code in Response pane. Preview is useful for inspecting bundled js, so you should see somewhat un-minified main.js code in that pane, but not for rendering javascript SPAs.
In other words devtools doesn’t, load/exec js in Preview pane by-design for sec reasons. It’s literally rendering the static home page:
May I sugest this extension
Once you get the hang of it works wonders. You were trying to trace a call to /home which returned HTML / JavaSscript the developer consol isn’t going to render that for you.
I do, and it’s fantastic. What I’m trying to do now is figure out why passing a value in to a slide-out works perfectly in the browser, but doesn’t pass the value using the client.