JSON形式でデータを返すWebページからデータを取得しようとしています.単純なajax Jqueryを使用して同じことをしています
$(document).ready(function() {
/*Project Db start Here*/
$.ajax({
url: 'http://enlytica.com/RSLivee/EnClient',
type: 'GET',
dataType: "JSONP",
crossDomain: true,
success: function(data) {
//called when successful
alert("success");
},
error: function(e) {
//called when there is an error
//console.log(e);
alert(e);
}
});
});
しかし、HTML ページで次のエラーが発生します。
XMLHttpRequest cannot load http://local.html.
No 'Access-Control-Allow-Origin' header is present on the requested
resource. Origin 'null' is therefore not allowed access.
どうすればこれを修正し、リンクからデータを取得できますか? 前もって感謝します