在 visual studio cordova 中调试时如何查看网络流量
how to view network traffic when debugging in visual studio cordova
我正在使用 Cordova 的 VS 工具 运行 我的应用程序,通过 iphone 上的远程设备(build/deploy 来自 mac 使用 vs-mda-remote) .我看到有 DOM Explorer 和 Javascript Console,它们让我可以完成调试所需的大部分工作。
但是,我找不到一种方法来查看网络流量。我看到 Javascript 控制台显示
Failed to load resource: the server responded with a status of 400 (Bad Request) MyApiCallEndpoint(0,0)
如何从 Visual Studio 中更详细地检查这个 request/response(或者如果无法从 VS 中检查)?
我们最近向 VS (details here), but it doesn't currently support Cordova projects running on Android or iOS (I'm noting your implicit request!). In the meantime, we would recommend using Fiddler (which is just a generally awesome tool) and configuring your device to connect to it as a proxy (details here) 添加了一个新的网络分析器。这样您就可以查看您的应用产生的所有流量。
我正在使用 Cordova 的 VS 工具 运行 我的应用程序,通过 iphone 上的远程设备(build/deploy 来自 mac 使用 vs-mda-remote) .我看到有 DOM Explorer 和 Javascript Console,它们让我可以完成调试所需的大部分工作。
但是,我找不到一种方法来查看网络流量。我看到 Javascript 控制台显示
Failed to load resource: the server responded with a status of 400 (Bad Request) MyApiCallEndpoint(0,0)
如何从 Visual Studio 中更详细地检查这个 request/response(或者如果无法从 VS 中检查)?
我们最近向 VS (details here), but it doesn't currently support Cordova projects running on Android or iOS (I'm noting your implicit request!). In the meantime, we would recommend using Fiddler (which is just a generally awesome tool) and configuring your device to connect to it as a proxy (details here) 添加了一个新的网络分析器。这样您就可以查看您的应用产生的所有流量。