问题:
使用fineinput.js插件上传文件,只显示文件名称中的英文、数字、符号不显示文件名称中的汉字
解决方案
- 简单粗暴:修改fileinput.js中的slugDefault方法
slugDefault: function (text) {
return isEmpty(text) ? '' : text.split(/(\\|\/)/g).pop().replace(/[^\w\-.\\\/ ]+/g, '');
},
修改为:
slugDefault: function (text) {
/*return isEmpty(text) ? '' : text.split(/(\\|\/)/g).pop().replace(/[^\w\-.\\\/ ]+/g, '');*/
return isEmpty(text) ? '' : text.substr(text.lastIndexOf("\\") + 1, text.length);
},