<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>webservices example </title>
<link rel="stylesheet" href="jquery.mobile-1.1.0.css" />
<link rel="stylesheet" href="my.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$.ajax({
type:"GET",
url:"http://shoperola.com/Restaurant/foodysrest/sample",
crossDomain: true,
contentType: "application/json; charset=utf-8",
dataType: "json",
xhrFields: {
withCredentials: true
},
beforeSend: function (request) {
request.setRequestHeader("Access-Control-Allow-Origin: ", "*")
},
success: function(data) {
alert(data);
},
error: function(data) {
alert("Error in Processing-----" + data.status);
}
});
});
</script>
</head>
</html>
「的XMLHttpRequest不能加載http://shoperola.com/Restaurant/foodysrest/sample?{}。否‘訪問控制允許來源’標題存在於所請求的資源。原因'http://:8088'因此不被允許訪問「。否「訪問控制允許來源」標題存在於所請求的資源
你意味着服務器沒有配置爲允許這個?因爲在客戶端,我認爲這是按照CORS中的建議實現的,使用xhrFields和證書,並使用ACAO設置標題。 –