对不起这个“新手”问题。
这是我的问题:
我正在使用 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 = '<h1>' + item.testID+ '</h1>';
output.append(registrationInfo);
});
},
error: function(){
output.text('There was an error loading the data.');
}
});
但我希望 URL 参数由变量传递。以下不工作,但总是以错误功能“加载数据时出错”结束。
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 = '<h1>' + item.testID+ '</h1>';
output.append(registrationInfo);
});
},
error: function(){
output.text('There was an error loading the data.');
}
});
我要疯了。谁能帮我一把?提前致谢 ...