これを試してみてください。
API
httpServletResponse.setContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");
httpServletResponse.setHeader("Content-Disposition",
"attachment; filename=sample.xlsx");
workbook.write(httpServletResponse.getOutputStream());
workbook.close();
httpServletResponse.getOutputStream().close();
$ HTTP呼び出し
$scope.download = function() {
$http({
url: '/download',
method: "POST",
data: $scope.pagination,
headers: {
'Content-type': 'application/json'
},
responseType: 'arraybuffer'
}).success(function(data, status, headers, config) {
var blob = new Blob([data], {
type: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
});
saveAs(blob, "Sales_Summary_Report.xls");
}).error(function(data, status, headers, config) {
});
}
HTML
<button ng-click="download()"> Download Excel </button>
私はエクセル.Iで[Objectオブジェクト]を取得していますFileSaverを使用して同じことを試みたが、作業をしていません。 – user3428736
私はあなたの例を試してみました。私はすべての応答を私のExcelでバイトとして取得しています。 JAVAの戻り値の型が何であるかのための実例があります。 – user3428736
ブラウザからファイルをダウンロードできますか? –