为什么最终的控制台日志是未定义的?可变时间具有全局范围,而 ajax 调用是异步的。
这是我的代码:
var time;
$.ajax({
async:"false",
type: 'GET',
url: "http://www.timeapi.org/utc/now.json",
success: function(data) {
console.log(data);
time=data;
},
error: function(data) {
console.log("ko");
}
});
console.log(time);