我正在尝试从响应中获取PDF字符串,并在浏览器中以PDF格式显示。如何使用javascript在新窗口中打开PDFString?
以下是使用的代码段。
var newWindow = window.open('','newwin','width = 400,height = 500');
newWindow.document.open();
newWindow.document.write(response.responseText);
newWindow.document.close();