応答から PDF 文字列を取得しようとしており、ブラウザー ウィンドウに PDF として表示されます。JavaScriptを使用してPDFStringを新しいウィンドウで開く方法は?
これが使用しているスニペットです。
var newWindow = window.open('', 'newwin', 'width=400,height=500');
newWindow.document.open();
newWindow.document.write(response.responseText);
newWindow.document.close();