0

我在我的应用程序的主页上设计了一个元素,单击该元素会更改活动选项卡。

我曾经做过以下事情:

events.subscribe('change-tab', (tab, filterOnSport) => {
      console.log('TabsPage#constructor - change-tab event received with params: ', tab, filterOnSport);
      if (filterOnSport) this.findTabParams.filterOnSport = filterOnSport;
      this.tabs.select(tab);
    });

但这第一次不起作用,如果从未访问过上述选项卡(请参阅https://github.com/ionic-team/ionic/issues/12592

我在 Github issue 中看到有人建议模拟点击选项卡。

我正在尝试ViewChild这样做,但无法使其工作。

// View
<ion-tabs #tabs>
  <ion-tab [root]="tab1Root" tabIcon="home"></ion-tab>
  <ion-tab #findTab [root]="tab2Root" [rootParams]="findTabParams" tabIcon="search"></ion-tab>
  <ion-tab [root]="tab3Root" tabIcon="chatbubbles" [tabBadge]="unread?1:null" [tabsHideOnSubPages]=true></ion-tab>
  <!--<ion-tab [root]="tab3Root" tabIcon="chatbubbles" [tabBadge]="totalUnreadMessages?.$value" [tabsHideOnSubPages]=true></ion-tab>-->
</ion-tabs>

// Controller
@ViewChild('findTab') findTab: ElementRef;
...
ngAfterViewInit() {
    console.log('TAB elem ', this.findTab);
    // How click the tab ?
  }

如何触发标签的点击功能?

4

2 回答 2

0

我决定走这条路,因为我在 GitHub 上得到了推荐:

document.getElementById(tabid).click();
于 2017-09-28T10:08:58.913 回答
0

看看这个 plunkr:https ://plnkr.co/edit/KBWa5YbFCYYVQI97ACRQ?p=preview

//our root app component
import {Component, NgModule, VERSION, ViewChild} from '@angular/core'
import {BrowserModule} from '@angular/platform-browser'

@Component({
  selector: 'my-app',
  template: `
    <div>
      <h2>Hello {{name}}</h2>
      <button #btn (click)="testClick()">hello</button>
    </div>
  `,
})
export class App implements AfterViewInit {
  @ViewChild('btn') myBtn; 
  name:string;
  constructor() {
    this.name = `Angular! v${VERSION.full}`
  }

  testClick(){
    window.alert("i have been clicked!")
  }

  ngAfterViewInit(){
    this.myBtn.nativeElement.click();
  }
}

@NgModule({
  imports: [ BrowserModule ],
  declarations: [ App ],
  bootstrap: [ App ]
})
export class AppModule {}
于 2017-09-26T10:46:11.503 回答