使用vanilla javascript

时间:2017-05-26 13:31:49

标签: javascript json

我想从javascript使用维基百科搜索API,我知道使用jquery之类的东西可能更容易,但我想在使用框架之前掌握基本知识。 这是我写的代码,但我从来没有收到警报:

document.getElementById("go_search").addEventListener("click", () => {
    let wiki = new XMLHttpRequest();
    wiki.addEventListener("load", () => {
      alert(wiki.responseText)
    });
    wiki.open("GET", "https://en.wikipedia.org/w/api.php?action=query&format=json&list=search&utf8=1&srsearch=Albert+Einstein");
    wiki.send();

  })

维基百科地址是一个搜索阿尔伯特爱因斯坦,只是为了测试代码是否正常工作。感谢您的帮助,非常感谢!

1 个答案:

答案 0 :(得分:1)

<cxf:rsServer id="rsServer" address="http://localhost:8484/customerservice"> 添加到URL查询参数以向维基百科发出JSON API请求。

将您的请求网址更改为

origin=*