questionAdding the type of uploaded file in accept only plays a "superficial" role. After selecting "all files", you can still upload any type of file, which has no restrictive effect at all. Solution Make a judgment in the before-upload hook (the hook before uploading files, the parameter is the uploaded file, if it returns false or returns a Promise and is rejected, the uploading will be stopped.) There is a pitfall here. When you set :auto-upload="false", this hook will not be triggered, so you can also make a judgment in on-change. On the code // :before-upload or :on-change binding method beforeUpload(file, fileList) { if (file.size / (1024 * 1024) > 500) { // Limit file size this.$message.warning(`The current limit file size cannot be greater than 500M`) return false } let suffix = this.getFileType(file.name) //Get the file suffix let suffixArray = ['jpg', 'png', 'jpeg', 'gif'] //Limited file types, define them according to the situation if (suffixArray.indexOf(suffix) === -1) { this.$message({ message: 'File format error', type: 'error', duration: 2000 }) } return suffixArray }, getFileType(name) { let startIndex = name.lastIndexOf('.') if (startIndex !== -1) { return name.slice(startIndex + 1).toLowerCase() } else { return '' } } This is the end of this article about the solution to Element-ui upload file restrictions. For more information about Element upload restrictions, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Hadoop 2.x vs 3.x 22-point comparison, Hadoop 3.x improvements over 2.x
>>: Detailed tutorial on installation and configuration of MySql 5.7.17 winx64
Links to the current page. ------------------- Com...
1. Principle of Hotlinking 1.1 Web page preparati...
Table of contents 1. Delete the old version 2. Ch...
Statistics of QPS values in the last N seconds ...
This project shares the specific code of Vue+Rout...
Today, we use uniapp to integrate Echarts to disp...
Result:Implementation Code html <div class=...
need: The backend returns an array object, which ...
Many people now live on the Internet, and searchin...
1. The error information reported when running th...
This article introduces a tutorial about how to u...
Result: html <nav id="nav-1"> <...
environment System: Ubuntu 18.04 Software: qt5.12...
Postfix is a free and open source MTA (Mail Tra...
On mobile devices, flex layout is very useful. It...