我需要显示文件预览,当我单击下载时,它使用默认文件名。在这种情况下,我可以设置文件名吗?
const win = window.open();
win.document.write('<html><head></head><body style="margin: 0;">' +
'<iframe src="' + result.ReturnValue.DataBase64String + '" frameborder="0" style="border:0; top:0px; left:0px;' +
'bottom:0px; right:0px; width:100%; height:100vh;" allowfullscreen></iframe></body></html>');
win.document.title = result.ReturnValue.FileName;