0

リクエストをどのようにデバッグしますか? 以下のコードのように。これはジャバスクリプトです。そして、私は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);
      }
    });
  }
4

1 に答える 1

0

リクエストがインターフェイスに送信されているか、URL に GET-URL 文字列 XESSION_XDEBUG_START を追加できるかどうかは、wireshark で確認できます。

于 2012-08-02T23:55:15.767 に答える