<script>
$(document).ready(function () {
// 为下载按钮绑定点击事件
$('#downloadButton').click(function () {
$.ajax({
url: '',
method: 'GET',
headers: {
'token':' '
},
xhrFields: {
responseType: 'blob'
},
success: function (blob) {
var a = document.createElement('a');
var url = window.URL.createObjectURL(blob);
a.href = url;
a.download = 'downloaded_file';
a.style.display = 'none';
document.body.appendChild(a);
a.click();
},
});
});
});
</script>