在我的Chrome扩展程序中,我会定期对URL进行API调用以获取随机信息。
function get_quote_api(){
var xhr = new XMLHttpRequest();
xhr.open("GET", "http://quotesondesign.com/wp-json/posts?filter[orderby]=rand&filter[posts_per_page]=1", true);
xhr.onreadystatechange = function() {
if (xhr.readyState == 4) {
//handle the xhr response here
console.log(xhr.responseText)
}
}
xhr.send();
}
window.setInterval(function(){
get_quote_api()
}, 5000);
当我在邮递员中测试此API调用时,在每次调用时它都会提供随机引号。但是,在JavaScript程序中,每个调用总是得到相同的引号。它发生了什么?我需要改变什么?