15
Ajaxを使用してPDFファイルをダウンロードして開く
PDFを生成するアクションクラスがあります。contentType適切に設定されています。 public class MyAction extends ActionSupport { public String execute() { ... ... File report = signedPdfExporter.generateReport(xyzData, props); inputStream = new FileInputStream(report); contentDisposition = "attachment=\"" + report.getName() + "\""; contentType = "application/pdf"; return SUCCESS; } } 私はこれaction をAjax呼び出しで呼び出します。このストリームをブラウザに配信する方法がわかりません。私はいくつかのことを試しましたが、何もうまくいきませんでした。 $.ajax({ type: "POST", url: url, data: wireIdList, cache: false, success: function(response) { …
98
javascript
java
jquery
pdf