gpt4 book ai didi

ionic-framework - ion-content 方法 scrollToPoint 不适用于 Ionic 5

转载 作者:行者123 更新时间:2023-12-05 06:16:54 25 4
gpt4 key购买 nike

我正在关注这个ionic5github文档以便以编程方式将我的页面滚动到一个点。以下是代码

getContent() {
return document.querySelector('ion-content');
}

scrollPage() {
this.getContent().scrollToPoint(100,100);
}

方法 scrollToPoint() 没有做任何事情。是否有另一种调用此方法的方法?

最佳答案

您不能在选择器获得的项目上应用方法。您必须使用 @ViewChild 选择此 ion-content 并且可以使用方法:

@ViewChild(IonContent) 内容:IonContent;

content.scrollToPoint(100,100);

关于ionic-framework - ion-content 方法 scrollToPoint 不适用于 Ionic 5,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61909190/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com