http://server1:8080/platform/collections/123-456-789
HTMLファイルをバイト配列として返すRESTURLがあります。
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を使用してバイト配列の応答を取得する他の方法もありがたいです