如何开发angular7中在两个不同组件之间切换的标签?

时间:2019-06-08 14:09:05

标签: angular tabs angular-material angular7 angular-ui-tabset

我在angular 7项目中生成了三个不同的组件

ng g c mycomp1
ng g c mycomp2
ng g c mycomp3

现在我想在mycop1 componenet中开发一个标签,如下所示:

Tabs image

通过单击“首先”,它应该显示html或呈现同一组件中的内容。 通过单击第二个选项卡,我需要从mycomp2组件(来自其他组件)呈现内容, 从mycomp3组件进行渲染所需的第三个选项卡的相似性。 请帮助我如何继续执行此操作,谢谢

4 个答案:

答案 0 :(得分:0)

您可以有一个容纳所有3个组件的容器,并向每个决定是否显示它的每个组件添加ngIf

当然,您始终可以使用“角度材质”选项卡: https://material.angular.io/components/tabs/overview

答案 1 :(得分:0)

我不使用Angular Material,但是您需要使用路由器导航到每个。

import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';

const routes: Routes = [
    { path: '', loadChildren: './home/home.module#HomeModule' },

    { path: 'mycomp1', component: MyComp1Component },
    { path: 'mycomp2', component: MyComp2Component },
    { path: 'mycomp3', component: MyComp3Component }
];

答案 2 :(得分:0)

假设我们有4个组件(app.component,a.component,b.component,c.component)

检查以下网址中的完整代码 https://stackblitz.com/edit/angular-gerrxm

答案 3 :(得分:0)

HTML文件:

<div class="tab">
  <button class="tablinks" routerLink="/tab1">Tab 1</button>
  <button class="tablinks" routerLink="/tab2">Tab 2</button>
  <button class="tablinks" routerLink="/tab3">Tab 3</button>
</div>

Using router method in component
<div class="tab">
  <button class="tablinks" (click)="setTab('tab1')">Tab 1</button>
  <button class="tablinks" (click)="setTab('tab2')">Tab 2</button>
  <button class="tablinks" (click)="setTab('tab3')">Tab 3</button>
</div>

<router-outlet></router-outlet>

Ts文件:

import { Component } from '@angular/core';
import { Router } from '@angular/router';

@Component({
  selector: 'my-app',
  templateUrl: './app.component.html',
  styleUrls: [ './app.component.css' ]
})
export class AppComponent  {
  constructor(
    private router: Router
  ) {}
  setTab(tabname: string) {
    this.router.navigate([`/${tabname}`]);
  }

}

CSS:

body {font-family: Arial;}

/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  display: block;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}