服务器在使用getjson或ajax

时间:2017-03-08 10:13:56

标签: javascript jquery ajax getjson

所以,我尝试使用getjson()和ajax两者向服务器生成请求。但是有时服务器每次都会抛出404状态。作为一个新手,我无法弄清楚为什么。这是我的Codepen的链接。 Link

error image

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");
             }

           });

0 个答案:

没有答案