1
我想讀取文件並將讀取的內容存儲在組件的私有變量中。到目前爲止,我無法訪問組件的屬性,因爲我得到this
的推薦爲FileReader
而非組件。Angular2 - 從屬性的方法訪問組件屬性
我的代碼是這樣的
private ReadTheFile(file:File) {
var myReader: FileReader = new FileReader();
myReader.readAsText(file);
myReader.onloadend = function (e) {
//Do something here with myReader.result
}
//Get the modified result here, and assign it to public property.
}
那麼,如何訪問一個像這樣的方法內部組件的屬性?哪個是FileReader
實例的方法,不是Component。