我的Jquery代碼如下,但它總是給'加載失敗的內容',我需要做一個Ajax調用來獲取數據使用rest api。我正在使用jQuery 1.3.2。AJAX調用:「無法加載內容」
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(function() {
var cat_id = ${coreNode.ancestors[0].id};
var restUrl = "http://xyz./restapi/vc/categories/id/"+cat_id+"/boards";
$.ajax({
type: "POST",
url: restUrl,
contentType: "text/xml; charset=utf-8",
data: "DATA",
success: function (response) {
alert(restUrl);
});
},
error: function (response) {
$('#float-threads').html('Failed to load the content');
}
});
});
</script>
<div id="float-threads">
</div>
什麼錯誤? url是否可以返回404? – Sumurai8
錯誤出現在url:'restUrl'中,請刪除該報價。和數據:「數據」,你需要將數據作爲變量傳遞給它並賦值。 –
另外,如果你的目的是簡單地從服務器獲取數據,你應該使用GET而不是POST;) – Terry