我正在尝试将pdf流嵌入到jQuery UI对话框中。到目前为止,它已成功使用Chrome和FF,但不适用于IE。打开pdf时我得到“拒绝访问”。我不确定是什么问题。
这是我的代码:
var blob = new Blob([this.response], {type: type});
var url = urlCreator.createObjectURL(blob);
var file = '<object id="pdfView" data="' + url + '" type="application/pdf">' +
'<embed src="' + url + '" type="application/pdf"/></object>';
$("#dialog").dialog({
autoOpen: false,
title: pdf,
modal: true,
width: 650,
height: 450,
open: function () {
$('#dialog').html(file);
}
});
这个网址对于blob来说是这样的:
blob:http%3A//localhost%3A8080/670ed0b1-0a3b-4284-a6bc-4536f1c09b0f
我正在运行我的应用程序@localhost:8080。