我在做一個聊天應用程序。當我打開這個聊天應用程序時,我希望頁面滑落。 當框處於焦點時,頁面滑落。但是頁面在第一次打開時不會滑落。我能做什麼 ? Chat Page Picture 我的密碼;Ionic 2在頁面打開時向下滾動頁面
ionViewDidEnter() {
this.chat();
}
scrollToBottom() {
if (this.content.scrollToBottom) {
this.content.scrollToBottom();
}
}
onFocus() {
this.content.resize();
this.scrollToBottom();
this.keyboard.show();
}
@suraj歐凱,我加入到答案。謝謝 – Degisim