Error TS2339: Property 'entries' does not exist on type 'FormData'
问题 I searched on Stackoverflow and on the web, I found this thread https://github.com/Microsoft/TypeScript/issues/14813 but it does not solve my problem. I run into this error while compiling my code with ng serve --watch . Error TS2339: Property 'entries' does not exist on type 'FormData'. This part with fd.entries() triggers the error... any idea what is going on here? onFileSelected(event) { const fd = new FormData; for (const file of event.target.files) { fd.append('thumbnail', file, file