我做了这个ajax调用:
$.ajax({
//query rest che trova tutti gli amici dell'utente corrente
type: 'GET',
async: false,
url: "http://www.timeapi.org/utc/now",
success: function(data) {
time_now=data;
},
error: function(data) {
console.log("ko" );
}
});
在 chrome 中完美运行,但在 Firefox 和移动 android 中会出现错误回调。
在Firefox中,错误是(用红色写的): GET ' http://www.timeapi.org/utc/now.json 200 OK