我想从我的数据库中获取一些数据。当我在浏览器中给出路径时,我可以看到内容但我想通过使用ajax获取数据并将其存储在变量中。
function getSuccessOutput() {
$.ajax({
url:'/dc/dcrest/dcrs/datacenter/1',
complete: function (response) {
$('#output').html(response.responseText);
},
error: function () {
$('#output').html('Bummer: there was an error!');
},
});
return false;
}