意外的令牌',' api叫ajax

时间:2017-02-21 16:05:29

标签: javascript ajax api

我在打开Open Weather API时在控制台中收到意外的令牌错误。

function ajaxCall() {
    var xhttp = new XMLHttpRequest();
    xhttp.open("POST", api.openweathermap.org/data/2.5/weather?zip=94040,us);
    xhttp.setRequestHeader("Content-type", "application/json");
    xhttp.send();
    var response = JSON.parse(xhttp.responseText);
    console.log(response);
}

错误意外令牌是邮政编码与国家/地区之间的逗号。

0 个答案:

没有答案