IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> JavaScript知识库 -> 【angular-实践】路由传参跳转 -> 正文阅读

[JavaScript知识库]【angular-实践】路由传参跳转

传参方式

  • routerLink传参
    • routerLink
    • routerLink && queryParams
  • 路由中传参
  • navigate传参
  • navigateByUrl(待完善)

方式一 routerLink

1 routerLink

routerLink跳转

<!-- 3种方法: 设置参数变量的 值 -->
<a routerLink="/test/1"> 跳转1</a>
<a [routerLink]="['/test/2']"> 跳转2 </a>
<a [routerLink]="['/test',3]"> 跳转3 </a>

对应路由

 { path: 'test/:id', component: PropertyComponent }

接收参数

// ActivatedRoute: 当前激活的路由对象,保存着当前路由的信息,如路由地址,路由参数等
import { ActivatedRoute } from '@angular/router';
...此处省略一万字...
constructor(private route: ActivatedRoute) { }
ngOnInit() {
  // 1. 使用 ActivatedRoute 的 snapshot 快照的 paramMap 的 get(key) 方法
  const id = this.route.snapshot.paramMap.get('id');
  // 2. 使用 ActivatedRoute 的 snapshot 快照的 params 对象
  const id = this.route.snapshot.params['id'];
}

import { ActivatedRoute, Params } from '@angular/router';
...此处省略一万字...
constructor(private route: ActivatedRoute) { }
ngOnInit() {
  // 使用params的订阅 subscribe(不能使用 paramMap.subscribe)
  this.route.params.subscribe((params: Params) => {
    const id = params['id'];
  });
}

2 routerLink && queryParams

<!-- 在html的a标签里直接设置查询参数 key:value,不在路由中配置 -->
<a [routerLink]="['/test']" [queryParams]="{id: 4,title:'新闻详情'}">路由跳转</a>

<!-- 以下不正确 -->
<a [routerLink]="['/test',{queryParams:{id: 4,title:'新闻详情'}}]"> 错误例子 </a>
<a routerLink=["/detail",{queryParams:object}]></a>

对应路由
(路径后没有参数)

{   // 路由路径:此处不设置参数 
    path: 'test', component: NewsDetailComponent,
}

接收参数

// 1. 使用 ActivatedRoute 的 snapshot 快照的 queryParams 对象
const id = this.route.snapshot.queryParams['id'];
const id = this.route.snapshot.queryParams['title'];

// 2. queryParams的订阅
this.route.queryParams.subscribe((params: Params) => {
    const id = params['id'];
    const title = params['title'];
});

方式二 路由中传参

<a routerLink="/test"> 跳转到详情页 </a>
{
  path: 'test',
  component: NewsDetailComponent,
  data: {
    title: '我是详情页1',
    subtitle: '我是详情页2'
  }
}

获取参数

// 获取参数: 一个个获取
this.title = this.routeInfo.snapshot.data['title'];
this.title = this.routeInfo.snapshot.data['subtitle'];

方式三 navigate

单个参数

// 在路由路径中配置参数的名称,此处带了一个叫 id 的参数变量
{path: 'news-detail/:id', component: NewsDetailComponent}

方法中调用

this.router.navigate(['/home/news/news-detail/1']);
this.router.navigate(['/home/news/news-detail',1]);

接受参数

// ActivatedRoute: 当前激活的路由对象,保存着当前路由的信息,如路由地址,路由参数等
import { ActivatedRoute } from '@angular/router';
...此处省略一万字...
constructor(private route: ActivatedRoute) { }
ngOnInit() {
  // 1. 使用 ActivatedRoute 的 snapshot 快照的 paramMap 的 get(key) 方法
  const id = this.route.snapshot.paramMap.get('id');
  // 2. 使用 ActivatedRoute 的 snapshot 快照的 params 对象
  const id = this.route.snapshot.params['id'];
  console.log('id==>', id);
}

import { ActivatedRoute, Params } from '@angular/router';
...此处省略一万字...
constructor(private route: ActivatedRoute) { }
ngOnInit() {
  // 使用params的订阅 subscribe(不能使用 paramMap.subscribe)
  this.route.params.subscribe((params: Params) => {
    const id = params['id'];
    console.log('id==>', id);
  });
}

传多个参数

{   // 路由路径:此处不设置参数 
    path: 'news-detail', component: NewsDetailComponent,
}
this.router.navigate(['/home/news/news-detail'], 
    { queryParams: { 'id': '2' ,title:'详情页'} });

接收

const id = this.route.snapshot.queryParams['id'];
const id = this.route.snapshot.queryParams['title'];

// 2. queryParams的订阅
this.route.queryParams.subscribe((params: Params) => {
    const id = params['id'];
    const title = params['title'];
    console.log('id==>', id);
    console.log('title==>', title);
});

参考

  JavaScript知识库 最新文章
ES6的相关知识点
react 函数式组件 & react其他一些总结
Vue基础超详细
前端JS也可以连点成线(Vue中运用 AntVG6)
Vue事件处理的基本使用
Vue后台项目的记录 (一)
前后端分离vue跨域,devServer配置proxy代理
TypeScript
初识vuex
vue项目安装包指令收集
上一篇文章      下一篇文章      查看所有文章
加:2021-12-16 17:34:47  更:2021-12-16 17:37:12 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 9:16:00-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码