我正在通过上传完成后检查文件的mime类型来验证文件。
我正在使用文件对象来确定文件的mime类型。
此过程在Linux和Mac上效果很好,但在Windows中,它会显示文本/ csv文件的空字符串。
参考代码-
<!DOCTYPE html>
<html>
<body>
<input type="file" accept=".csv" onChange="myFunction(event)">
<script>
function myFunction(event) {
console.log(event.target.files[0].type);
document.write(event.target.files[0].type);
}
</script>
</body>
</html>