我有一个函数调用jquery ajax来命中用C#开发的restful服务。代码如下
function refreshUsage(macAdd)
{
alert(macAdd);
ajax = $.ajax({
type: "GET",
data: {'mac': '1'},
dataType: "jsonp",
jsonp:false,
async:false,
jsonpCallback:'blah',
crossDomain: true,
cache: false,
contentType: "application/json; charset=utf-8",
url: "http://localhost:20809/api/keyGen",
ajaxSuccess: function(data)
{
data = JSON.parse(data);
console.log("data _" +data);
},
error: function(xhr, status, error) {
if (status === 'parsererror') {
console.log("resptext__" + xhr.responseText)
}
console.log("status _" +status);
console.log("error _" +error);
},
complete: function(response)
{
console.log("response _" +response);
},
});
}
var blah = function (data) {
alert(data);
//do some stuff
}
当我点击这个给定的URL时,它在浏览器窗口中发送响应。但是当我试图在ajax函数中获取响应文本时,即使成功代码为200并且成功文本成功,它仍未定义。我收到了以下错误,没有回复:
resptext__undefined
status _parsererror
错误_错误:没有调用blah
答案 0 :(得分:1)
这是一个例子。试试这个:
<html>
<head>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script>
$(document).ready(function(){
$.ajax({
url: 'http://twitter.com/status/user_timeline/padraicb.json?count=10',
dataType: 'jsonp',
success: function(dataWeGotViaJsonp){
var text = '';
var len = dataWeGotViaJsonp.length;
for(var i=0;i<len;i++){
twitterEntry = dataWeGotViaJsonp[i];
text += '<p><img src = "' + twitterEntry.user.profile_image_url_https +'"/>' + twitterEntry['text'] + '</p>'
}
$('#twitterFeed').html(text);
}
});
})
</script>
</head>
<body>
<div id = 'twitterFeed'></div>
</body>
</html>
ThatGuy 的示例会向您解释。
答案 1 :(得分:1)
对我来说,我必须确保服务器能够按照jsonp回调的预期进行响应,我必须如下所述编辑来自我的php服务器的响应
$data = array ('a'=>1,'b'=>2,'c'=>3,'d'=>4,'e'=>5);
echo $_GET['callback'] . '('.json_encode($data).')';
如果您的服务器未以类似的格式答复
dataWeGotViaJsonp({"statusCode":201})
您将收到该错误
希望这会有所帮助