如何在使用responseType时添加文件名:“blob”。它应该显示为test.csv。
我的代码:
var account = API.one("users/csvExport", checkboxesChecked).withHttpConfig({responseType: "blob"}).post().then((response) => {
var url = (window.URL || window.webkitURL).createObjectURL(response);
window.open(url,"_self");
});
}