为了账号安全,请及时绑定邮箱和手机立即绑定

angular路由跳转,代码自取

标签:
AngularJS

    今天来个大家分享angular路由跳转的方法,话不多说直接上代码:

a标签进行跳转:

    1,创建组件ng g c homeng g c newsng g c product

    2,将组件引入到根组件中,并在declarations中进行配置。(如果是通过命令生成组件,原则上会配置,但需要检查一下)

import { NewsComponent } from './components/news/news.component';

import { HomeComponent } from './components/home/home.component';

import { ProductComponent } from './components/product/product.component';


 declarations: [

    AppComponent,

    NewsComponent,

    HomeComponent,

    ProductComponent

  ],

    3,在路由配置文件中引入我们创建的组件,在routes对象中配置路由。

import { HomeComponent } from './components/home/home.component';

import { NewsComponent } from './components/news/news.component';

import { ProductComponent } from './components/product/product.component';


const routes: Routes = [

  { path: 'home', component: HomeComponent },

  { path: 'news', component: NewsComponent },

  { path: 'product', component: ProductComponent },

];

    4,配置无路由匹配时,显示首页组件

const routes: Routes = [

  { path: '**', redirectTo: 'home' },

];

    5,通过a标签进行跳转(此时html文件)。[routerLink]属性是用来动态设置跳转的路由,routerLinkActive属性是用来设置路由被选中时的样式,需要在scss或者css文件中声明active类。

<header class="header">

  <!-- 动态路由 -->

  <a [routerLink]="[ '/home']" routerLinkActive="active">首页</a>

  <!-- 静态路由 -->

  <a routerLink= '/home' routerLinkActive="active">首页</a>


  <a [routerLink]="[ '/news']" routerLinkActive="active">新闻</a>


  <a [routerLink]="[ '/product']" routerLinkActive="active">商品</a>

</header>

<router-outlet></router-outlet>

    以上便是关于angular路由跳转的全部分享,大家学会了吗,更多内容干货可关注慕课网~


点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消