我正在开发离子聊天,我希望该视图在加载页面时指向页面底部。 我尝试了这种方法:
<div id="top-section-intro-container">
<img id="top-section-intro-image" src="https://www.outsideonline.com/sites/default/files/styles/full-page/public/2018/05/01/alaska-trees-forest-fog-richard-bos_h.jpg?itok=eOaGR4uY"/>
<div id="top-section-intro-text-container">
<p class="top-section-intro-text">
A forest is a large area dominated by trees.[1] Hundreds of more precise definitions of forest are used throughout the world, incorporating factors such as tree density, tree height, land use, legal standing and ecological function.[2][3][4] According to the widely used[5][6] Food and Agriculture Organization definition, forests covered 4 billion hectares (9.9×109 acres) (15 million square miles) or approximately 30 percent of the world's land area in 2006.
</p>
</div>
</div>
但是它不起作用,确实,我给脚本加载太早的印象。
我发现此解决方案有效:
ionViewDidEnter()
{
this.content.scrollToBottom(300);
}
但是我发现它不是干净的,您有更好的解决方案吗?
预先感谢您的回答。