This topic created in 2783 days ago, the information mentioned may be changed or developed.
Supplement 1 · Dec 4, 2018
其他文本格式比如 .csv .js .py ,没有被 accept=".txt"或者"text/plain"限制,也能选中上传
3 replies • 2018-12-04 19:33:46 +08:00
 |
|
1
dobelee Dec 4, 2018 via Android
其他文本格式是什么鬼?
|
 |
|
2
maichael Dec 4, 2018
accept 只是配置了系统打开文件的默认格式,不表示就不能选其他类型的文件。
要限制文件类型,你只能在用户选择了文件之后,通过判断文件的类型来报错。
|
 |
|
3
ysc3839 Dec 4, 2018
意思是你只在前端设置了 accept=".txt"?还得在后端校验的。
|