如何调试请求? 像下面的代码。 这是javascript。而我正在通过萤火虫。 但我从来没有得到任何东西
if (status == google.maps.GeocoderStatus.OK)
检查状态。 所以电话就出来了。没有回来。 怎么有人调试这个?有没有其他方法来获取错误代码?
谢谢
function codeAddress() {
geocoder = new google.maps.Geocoder();
service = new google.maps.DistanceMatrixService();
var address = document.getElementById("storeAddress").value;
geocoder.geocode( { 'address': address}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
storeGeo = results[0].geometry.location;
} else {
alert("Geocode was not successful for the following reason: " + status);
}
});
}
答案 0 :(得分:0)
如果请求发送到接口,您可以检查wireshark,或者您可以将GET-URL字符串XESSION_XDEBUG_START附加到网址。