我有一个休息 url http://server1:8080/platform/collections/123-456-789
,它以字节数组的形式返回一个 HTML 文件。
如何使用在 server2 中运行的 Javascript 或 jQuery 获取字节数组响应。我试过了
jQuery.ajax({
url: "http://server1:8080/platform/collections/123-456-789",
type: "GET",
dataType: "html",
crossDomain: true,
username: "abcd",
password: "abcd",
async: true,
success: function(data) {
alert("1");
alert(data);
},
error: function (xhr, ajaxOptions, thrownError) {
alert("error"+xhr.responseText);
alert("error"+thrownError);
}
});
我不进入成功的方法。如何成功获取字节数组响应?
编辑:
甚至使用 javascript 或 jquery 获取字节数组响应的任何其他方式也值得赞赏