2016-10-23 84 views
1

在Ionic 2應用程序(帶有Typescript的Angular2)中,我試圖傳遞一個json來映射標記。ionViewDidLoad錯誤:無法讀取屬性'firstChild'null

https://gist.github.com/flakerimi/9984172a911fd1bde7464e67686bd34d

但我剛開這個錯誤,我甚至不知道如何跟蹤它,因爲Angular2。

view-controller.js:231 MapPage ionViewDidLoad error: Cannot read property 'firstChild' of null 

什麼是firstChild在這種情況下。

+0

同樣的問題,任何解決方案? – Gowri

回答

2

我在setTimeOut中包裝代碼,然後它的工作。

setTimeout(() =>{ 
     let mapEle = document.getElementById('map'); 
}); 
+0

我不得不在setTimeOut上添加整個代碼。好工作。 – flakerimi