2017-05-04 70 views
0

我正在將Ionic2用於混合應用程序。我有一個要求,我需要的內容區域(離子內容)的高度+寬度。Ionic2,內容寬度和高度顯示爲0

我想

@ViewChild(Content) content: Content; console.log(this.content.contentWidth,this.content.contentHeight) 這是給0,0

當我嘗試console.log(this.content.getContentDimensions());

它給

{"contentHeight":null,"contentWidth":525,"contentLeft":0,"scrollHeight":1023,"scrollTop":0,"scrollWidth":510,"scrollLeft":0} 

我怎樣才能得到離子含量(可視區域)的寬度和高度。

回答

0

嘗試......

ionViewDidLoad() { 

     setTimeout(() => { 
      console.log("some....",this.content.contentHeight); 
      this.contentHeight = this.content.contentHeight; 
      console.log("some....",this.contentHeight); 
     }, 10); 

    } 
相關問題