以下是我的代碼:JSON API GET請求錯誤
$(document).ready(function(){
$.ajax({
url: 'https://bitconnect.co/api/info/BTC_BCC',
type: 'get',
dataType: 'json',
success: function(data){
alert(data);
},
error: function(error){
alert(error);
}
});
});
<html>
<head>
<meta charset="UTF-8">
<title></title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src = "//code.jquery.com/jquery-1.12.4.js"></script>
<script src="try.js"></script>
</head>
<body>
</body>
</html>
我想從AJAX的URL部分中提到的URL上的信息。 但我發現了以下錯誤:
Failed to load https://bitconnect.co/api/info/BTC_BCC: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost' is therefore not allowed access.
我完全新的這個部分,沒有的錯誤是什麼想法。 如果我能得到任何幫助,這將是一件好事。 在此先感謝。
的[爲什麼我的JavaScript得到一個「不‘訪問控制允許來源’標頭出現在所請求的資源」錯誤,當郵差沒有可能的複製?(https://開頭stackoverflow.com/questions/20035101/why-does-my-javascript-get-a-no-access-control-allow-origin-header-is-present) – Isma
是的,但我仍然沒有得到那裏給出的。 –
你可以嘗試使用代理url給我的解決方案,我已經測試過它,它的工作 –