当我从java脚本调用Web服务时,我收到此错误。但我正在得到完美的回应,而我使用curl称这个api请帮助。我陷入了这个问题
阻止跨源请求:同源策略禁止读取远程资源
$("#target").click(function(){
$.ajax({
type: "POST",
headers: {
"Authorization": "Bearer code here "
},
contentType: "application/json",
url: "https://test.maegan.co:4433/RestoLinkxPluginService.svc/v2/restaurants/74/full-menus.json?menuType=PickUp"
})
.done(function( res ) {
alert( res );
});
});