我想知道是否有人知道使用PhoneGap 捕获请求响应正文的方法?我正在尝试上传文件,我需要查看正在发送/接收的内容。我正在努力解决这个问题。
var ft = new FileTransfer();
console.log("file transfer created...");
ft.upload(imageURI, serverURI, function(r){console.log("Response = " + r.response);}, function(error){console.log(error);alert('Error uploading image')}, options);
这是我从服务器打印到 weinre 控制台的响应:
bytesSent: 13148
response: "[]"
responseCode: 200
我正在使用 weinre 检查任何日志和其他信息,但这还不够。我真的需要查看请求,类似于萤火虫的请求。任何帮助都是极好的。谢谢!