JQUERY getJSON / ajax yanıt işleniyor değil

0 Cevap php

Ben aşağıdaki gibi bir sunucuya bir json istek yolluyorum:

$.getJSON("prod_search.php?type=getCustInfo&custID="+custID, function(json) {
  alert(json.address);
  $("#invAddress").html(json.address);
  $("#currency").html(json.second);
});

Kontrol etmek için Firebug kullanarak, tepki altında, ancak uyarı 'tanımsız' ve hiçbir değerleri eklenir gösterir.

[{"address":"abc123","second":"ABC"}]

Herhangi bir fikir?

0 Cevap