リクエストをどのようにデバッグしますか? 以下のコードのように。これはジャバスクリプトです。そして、私はfirebugを実行しています。しかし、私は何も得ることはありません
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);
}
});
}