Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I had the following script working two weeks ago in XAMPP, today it doesnt work.

var url = 'http://maps.googleapis.com/maps/api/directions/xml?origin=Chicago,IL&destination=Los+Angeles,CA&waypoints=Joplin,MO|Oklahoma+City,OK&sensor=false';

$.ajax({

type: "GET",
url: url,
dataType: "xml",
async: false,
success: function(xml) {

$(xml).find("route").each(function(){

var startaddresss = $(this).find('start_address').text();

    alert(startaddresss);
});
}
});

If i save the XML to XAMPP and call it from AJAX it works fine. What changed in the last two weeks?

Thanks

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
176 views
Welcome To Ask or Share your Answers For Others

1 Answer

Cant fix the issue. So i will use PHP to fetch the file and return JSON.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...