这里是我的问题:
我使用JQuery 1.8.2,我试图发出一个Ajax请求:
这是工作:
$.ajax({
url: 'http://191.168.0.133/rest/interface/test/1',
dataType: 'json',
timeout: 5000,
success: function(data, status){
$.each(data, function(i,item){
var registrationInfo = '
' + item.testID+ '
';output.append(registrationInfo);
});
},
error: function(){
output.text('There was an error loading the data.');
}
});
但我想要的网址要通过变量传递的参数。以下内容不起作用,但总是以错误函数结尾:“加载数据时出错。”
var testURL = 'http://191.168.0.133/rest/interface/test/1';
$.ajax({
url: testURL,
dataType: 'json',
timeout: 5000,
success: function(data, status){
$.each(data, function(i,item){
var registrationInfo = '
' + item.testID+ '
';output.append(registrationInfo);
});
},
error: function(){
output.text('There was an error loading the data.');
}
});
我正在为此烦恼。任何人都可以帮我一把吗? 在此先感谢...
+0
因此,与内联网址的第一个Ajax调用的作品? –
+0
@大卫也许这是第一个新手阿贾克斯问题,其中的异步性不是问题:-) –
+0
看起来不错的我... –