gpt4 book ai didi

ionic-framework - ViewChild 对我不起作用 - 升级到 beta7

转载 作者:行者123 更新时间:2023-12-05 08:42:52 24 4
gpt4 key购买 nike

import {Page,NavController,NavParams,Platform,IonicApp} from 'ionic-angular';
import {ViewChild} from '@angular/core';

@Page({
templateUrl: 'build/pages/tabspage/tabspage.html'
})

@ViewChild('myTabs') tabRef: Tabs

export class TabsPage {
tab1;
tab2;
tab3;

constructor(app:IonicApp, params:NavParams) {
this.tab1 = Page1;
this.tab2 = Page2;
this.tab3 = Page3;

}


onPageDidEnter() {
this.tabRef.select(1);
}

}

我有这个代码。此代码位于 typescript 文件中。我收到错误:错误 TS1146:需要声明。

最佳答案

@ViewChild() 应该在您的类声明中。

export class TabsPage {
@ViewChild('myTabs') tabRef: Tabs
...
}

关于ionic-framework - ViewChild 对我不起作用 - 升级到 beta7,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37403614/

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