我尝试从返回json数据的服务器访问api,但是由于某些原因,当我尝试通过AJAX访问它时,我得到ERR_CONNECTION_REFUSED。如果我直接访问该链接,它将起作用。我需要在服务器上进行任何配置吗?我不知道为什么它不起作用。这是我的代码
<script type="text/javascript">
$.ajax({
type: 'GET',
dataType: 'JSON',
contentType:"application/json",
url: 'http://82.77.64.104:22650/api/positions',
headers: {
"Authorization": "Basic " + btoa("xyz:xyz")
},
success: function (response) {
for (var i = 0, length = response.length; i < length; i++) {
var data = response[i];
$("#tracar").append('<b>devID:</b> ' + data.deviceId + ' <b>latitude:</b> ' + data.latitude + ' <b>long:</b> ' + data.longitude + ' <b>speed:</b>' + data.speed + '</br>');
}
}
});
</script>
错误:选项http://82.77.64.104:22650/api/positions净值:: ERR_CONNECTION_REFUSED