我需要从 cloudify rest url (remotehost) 获取 json 数据http://hostname:8100/service/applications/
。
此 URL 返回以下 JSON 响应:
{
"response": {
"petclinic": ""
},
"status": "success"
}
我试图用下面的代码得到响应:
$.getJSON("http://hostname:8100/service/applications?jsoncallback=?", function (result) {
$.each(result, function (i, field) {
$("div").append(field + " ");
});
});
我在 firebug 中检查了来自网络面板的请求,显示 200 OK 状态,但我无法获取 JSON 数据。控制台中出现以下错误: