我在打开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);
}
错误意外令牌是邮政编码与国家/地区之间的逗号。