Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用しようとするwindow.FormDataと、次のエラーが表示されます。
window.FormData
The name 'FormData' does not exist in the current scope
同じことがFileReaderにも起こります
次を使用して、機能が存在することを確認できます。
if (window.FormData) { alert('Yes'); }
これは、誤ったチェックに依存しています。明示的にしたい場合は、を使用してください。
if (typeof FormData !== 'undefined') { alert('Yes'); }