离子V4(成角度)content.scrollToTop

时间:2018-08-30 04:38:47

标签: angular ionic-framework ionic4

在Ionic V3.X中,这会将视图滚动到顶部:

Connection cn = DriverManager.getConnction("jdbc:mysql://localhost:3306/student1", "Admin", "msdos");

在Ionic V4中,这不再起作用-“内容类型上不存在属性scrollToTop”。

还有其他选择吗?谢谢。

3 个答案:

答案 0 :(得分:2)

似乎在{strong> v4.0.0-beta.3 中添加了scrollToTop()方法,但几个小时前在 issues / strong>,因此请将Ionic更新为 beta.6 版本,并且scrollToTop()方法应该在那里。

编辑

  

谢谢,但是我已经在使用V4.0.0-beta.6。检查API,很明显   不再是scrollToTop()。

很抱歉坚持,但是我已经安装了V4.0.0-beta.6,并且可以使用scrollToTop()方法而没有任何问题:

v4.0.0-beta.6

enter image description here

答案 1 :(得分:1)

尝试一下

@ViewChild(Content) content: Content;   
this.content.scrollTop=0;

示例:https://stackblitz.com/edit/angular-gxxrfp

答案 2 :(得分:0)

使用

@ViewChild(IonContent) content: IonContent;

...

this.content.scrollToTop(500);

它对我有用,希望对您也有帮助。有关更多详细信息,https://www.freakyjolly.com/ionic-4-how-to-scroll-to-top-bottom-using-ion-content-scroll-events/