Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
504 views
in Technique[技术] by (71.8m points)

angular - input type=file for .docx and .xlsx

I am implementing file upload function where I need to check for permitted file extension. Two permitted file extension are .docx, .xlsx. When I console log, it is not printing for the file extension if it is .docx and .xlsx.

<input type="file" id="file" formControlName="file" (change)="handleFileInput($event.target.files)" accept=".pdf,.docx,.xlsx,.png,.jpeg"/>

handleFileInput(files: FileList) {
    console.log('File type: ' + files.item(0).type);
    return null;
}
question from:https://stackoverflow.com/questions/65879314/input-type-file-for-docx-and-xlsx

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

try to print the parameter that you got in handleFileInput like below and see if you are getting the files

handleFileInput(files: FileList) {
    const n = files.length;
    for(let i = 0; i < n; ++i) {
        console.log(files[i]);
    }
    console.log(files);
    console.log('File type: ', files[0].type);
    return null;
}

for files, you can specify mime type that are standard for extensions like this in input element

<input type="file"
  accept=".doc,.docx,application/msword,application/vnd.openxmlformats-officedocument.wordprocessingml.document">

for more info, please refer this
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/file#accept
for microsoft office files
https://docs.microsoft.com/en-us/previous-versions/office/office-2007-resource-kit/ee309278(v=office.12)?redirectedfrom=MSDN

after applying the meme type from above references I am getting this output for .xlsx

File
?
lastModified: 1610551870303
?
name: "ALL.xlsx"
?
size: 11503152
?
type: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
?
webkitRelativePath: ""
?

and for .docx

File
?
lastModified: 1608029273000
?
name: "aaa.docx"
?
size: 64618
?
type: "application/vnd.openxmlformats-officedocument.wordprocessingml.document"
?
webkitRelativePath: ""
?

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...