We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
2.4
IE浏览器下载文件时文件名出现乱码,chrome和edge浏览器功能正常 下载文件是用的jeecgListMixin.vue下面函数 downloadFile(text){ if(!text){ this.$message.warning("未知的文件") return; } if(text.indexOf(",")>0){ text = text.substring(0,text.indexOf(",")) } let url = getFileAccessHttpUrl(text) window.open(url); },
请问这是什么原因,谢谢帮忙
The text was updated successfully, but these errors were encountered:
@zhangdaiscott
Sorry, something went wrong.
No branches or pull requests
版本号:
2.4
问题描述:
IE浏览器下载文件时文件名出现乱码,chrome和edge浏览器功能正常
下载文件是用的jeecgListMixin.vue下面函数
downloadFile(text){
if(!text){
this.$message.warning("未知的文件")
return;
}
if(text.indexOf(",")>0){
text = text.substring(0,text.indexOf(","))
}
let url = getFileAccessHttpUrl(text)
window.open(url);
},
问题截图:
请问这是什么原因,谢谢帮忙
The text was updated successfully, but these errors were encountered: