以下數據爲json
的值。請幫助我如何得到的值或數據在jquery ajax
。如何從api網址獲取價值?
{"detail":
{ "ID":001,
"Email":"[email protected]",
"Tel":"123-456-789",
"FirstName":"John",
"MiddleName":null,
"LastName":"Abraham",
"Prefix":null,
"Suffix":null,
"Street":"123 Mew Street",
"City":"New York",
"Region":"NY",
"Country":"USA",
"PostCode":"1011",
"Latitude":null,
"Longitude":null,
"valid":1,
"message":"success"
}
我試過像下面的代碼,請告訴我更新代碼。
$.ajax({
type: "GET",
url: url,
dataType : 'json',
async: false,
success : function(text) { response = text; }
});
alert(response);
不要使用'異步:FALSE'。這是一個跨域Ajax調用? – Johan
是約翰..這是跨域 – user1944788
嘗試http://api.jquery.com/jQuery.getJSON/ –