當嘗試使用window.FormData
我得到以下錯誤:打字稿不知道FORMDATA是什麼
The name 'FormData' does not exist in the current scope
同樣發生的FileReader
當嘗試使用window.FormData
我得到以下錯誤:打字稿不知道FORMDATA是什麼
The name 'FormData' does not exist in the current scope
同樣發生的FileReader
可以檢查功能存在使用:
if (window.FormData) {
alert('Yes');
}
這依賴於錯誤的檢查 - 如果你想明確,使用。
if (typeof FormData !== 'undefined') {
alert('Yes');
}
它應該,因爲有一個[問題](http://typescript.codeplex.com/workitem/720)關於它,已經修復。什麼版本的TypeScript被使用? – raina77ow
版本0.8.3.1 – localhost
奇怪。好的,如果你使用沒有'window'前綴的'FormData'? – raina77ow