我正在体验API并发现自己阻止了某些事情。
我有一个Jquery函数可以从api中获取数据,并且为了不能获得"重新定位"效果,我需要在触发另一个将所有api日期到位的函数之前等待所有调用的函数。
我尝试使用AjaxStart和AjaxStop,但是第一个工作完美,第二个工作没有,我无法弄清楚为什么......
应用程序我的构建非常大,所以我制作了一个codePen来简化我的问题:
HTML:
<div id="button"></div>
<div id='locationbox'>
<span id='city'>Get the country</span>
<img id = "countryimg" src="">
<div id='searching'> searching...</div>
</div>
CSS
#button{
height : 150px;
width : 150px;
border : 5px solid black;
border-radius : 50%;
position : absolute;
top : 45%;
left : 45%;
}
#locationbox{
text-align : center;
width : 300px;
position : absolute;
top : 25%;
left : 38.5%;
}
JavaScript:
$("#button").on('click',function(){
getCity();
});
$(document).ajaxStart(function() {
$("#city").html("fetching data");
});
$(document).ajaxStop(function() {
$("#searching").html("Success")
});
function getCity(){
$.ajax({
datatype : "json",
contentType : "application/json",
type : "GET",
url : "https://nominatim.openstreetmap.org/reverse?",
data : {
format:"json",
lat :"50.8503",
lon : "4.3517",
zoom:"18",
adressdetails:"1"
},
success : function(quote){
var city = quote.address.city;
var country = quote.address.country
var countryCode = quote.address.country_code.toUpperCase()
document.getElementById("city").innerHTML = city + " , " + country;
document.getElementById("countryimg").src = "http://www.geognos.com/api/en/countries/flag/" + countryCode + ".png";
document.getElementById("country").innerHTML = country;
},
error : document.getElementById("city").innerHTML = "error!"
});
};
正如您在AjaxStart触发时在this code pen中看到的那样,AjaxStop不会失败。感谢您的阅读,感谢大家帮助我。
答案 0 :(得分:1)
由于您的成功代码块出错,这种情况正在发生。由于此错误,您的ajaxStop不会执行。
删除行document.getElementById("country").innerHTML = country;
,因为文档中没有包含该ID的元素。否则,添加标识为country