我正在尝试一个基本的ajax调用。所以我在测试服务器上托管了以下测试 php: http: //voicebunny.comeze.com/index.php ?numberOfWords= 10 这个网页是我自己的测试,已经集成到 VoiceBunny API http:// voicebunny.com/developers。
现在我需要使用 jQuery 在其他网页中获取该网页打印的数据。如您所见,网页回显了一些 JSON。如何从另一个网页获取此 JSON?
这是我的代码:
$.ajax({
'url' : 'http://voicebunny.comeze.com/index.php',
'type' : 'GET',
'data' : {
'numberOfWords' : 10
},
'success' : function(data) {
alert('Data: '+data);
},
'error' : function(request,error)
{
alert("Request: "+JSON.stringify(request));
}
});
我尝试了许多其他变体,但我总是得到一个错误,而不是 JSON。谢谢