所以,我尝试使用getjson()和ajax两者向服务器生成请求。但是有时服务器每次都会抛出404状态。作为一个新手,我无法弄清楚为什么。这是我的Codepen的链接。 Link
var url="https://"+api+"lat="+lat+"&lon="+lon+"&APPID=3346fe595f3b91ee6307913c28042901";
// console.log(url);
$.getJSON(url,function(jsonResult){ //function 1
//alert("hey");
//console.log("hello");
var temp=jsonResult.main;
$("#results").html(temp);
}).fail(function( ) {
console.log( "Request Failed: ");
});
$.ajax({ //function 2
url:url,
dataType:'json',
success:function(jsonResult){
console.log("abc");
alert("hii");
}
});