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知识库 -> react路由传参详解 -> 正文阅读

[JavaScript知识库]react路由传参详解

1.query传参

// 传参:
import React, { Component } from 'react'

export default class QueryOne extends Component {
    goTwo = () => {
        // 跳转传参
        this.props.history.push({
            pathname: '/paramTwo',
            query: {
                id: 1,
                name: 'Suk'
            }
        });
    }
    render() {
        return (
            <div>
                <button onClick={this.goTwo}>query传参</button>
            </div>
        )
    }
}

接收:
import React, { Component } from 'react'

export default class ParamTwo extends Component {
    state = {
        id: '',
        name: ''
    }
    componentDidMount() {
        // 接收query参数
        const { id, name } = this.props.location.query;
        console.log(this.props.location)
        this.setState(() => ({ id, name }))
    }

    render() {
        return (
            <div>
                <h1>id:{this.state.id}</h1>
                <h1>name:{this.state.name}</h1>
                <button onClick={this.goThree}>param传参</button>
            </div>
        )
    }
}

缺点: 页面刷新会丢失,参数存在于内存中,类似于vue的params传参刷新会丢失

2.路径参数

传:
import React, { Component } from 'react'

export default class QueryOne extends Component {
    goTwo = () => {
        // 跳转
        this.props.history.push('/paramTwo?id=1&name=Suk')
    }
    render() {
        return (
            <div>
                <button onClick={this.goTwo}>query传参</button>
            </div>
        )
    }
}

接收:
import React, { Component } from 'react'

export default class ParamTwo extends Component {
    state = {
        id: '',
        name: ''
    }
    componentDidMount() {
        // 接收路径参数的search=?id=?&name=?传入URLSearchParams对象,返回一个map,存的就是值
        const queryMap = new URLSearchParams(this.props.location.search);
        this.setState(() => ({
            id: URLSearchParams.prototype.get.call(queryMap, 'id'),
            name: URLSearchParams.prototype.get.call(queryMap, 'name')
        }))
    }

    render() {
        return (
            <div>
                <h1>id:{this.state.id}</h1>
                <h1>name:{this.state.name}</h1>
                <button onClick={this.goThree}>param传参</button>
            </div>
        )
    }
}

缺点: 需要手动解析search提取参数

优点:页面刷新不会丢失

3.params传参

params传参也就是vue里面的动态路由匹配:
<Route path="/stateThree/:id/:name" component={StateThree} />
这个path的写法和vue的动态路由匹配一样
传:
import React, { Component } from 'react'

export default class ParamTwo extends Component {
    state = {
        id: '',
        name: ''
    }
    goThree = () => {
        // 将id和name按照Route的path中定义的顺序传入
        this.props.history.push({
            pathname: '/stateThree/1/Lay',
        })
    }
    render() {
        return (
            <div>
                <h1>id:{this.state.id}</h1>
                <h1>name:{this.state.name}</h1>
                <button onClick={this.goThree}>param传参</button>
            </div>
        )
    }
}
接收:
import React, { Component } from 'react'

export default class StateThree extends Component {
    state = {
        id: '',
        name: ''
    }
    componentDidMount() {
        // params参数在match对象中存储
        const { id, name } = this.props.match.params;
        this.setState(() => ({
            id, name
        }))
    }
    render() {
        return (
            <div>
                <h1>id:{this.state.id}</h1>
                <h1>name:{this.state.name}</h1>
                <button onClick={this.goFive}>state传值</button>
            </div>
        )
    }
}

优点:遵循restful api风格,页面刷新不会丢失

4.state传参

传:
import React, { Component } from 'react'

export default class StateThree extends Component {
    state = {
        id: '',
        name: ''
    }
    goFive = () => {
        // 传值放到state中
        this.props.history.push({
            pathname: '/dateTime',
            state: {
                id: 3,
                name: 'Susuk'
            }
        })
    }
    render() {
        return (
            <div>
                <h1>id:{this.state.id}</h1>
                <h1>name:{this.state.name}</h1>
                <button onClick={this.goFive}>state传值</button>
            </div>
        )
    }
}
接收:
const { id, name } = this.props.location.state
this.setState(() => ({
    id, name
}))

优点:页面刷新不会丢失

总结一个点:只有query传参页面刷新会造成丢失的情况,注意这点就好

  JavaScript知识库 最新文章
ES6的相关知识点
react 函数式组件 & react其他一些总结
Vue基础超详细
前端JS也可以连点成线(Vue中运用 AntVG6)
Vue事件处理的基本使用
Vue后台项目的记录 (一)
前后端分离vue跨域,devServer配置proxy代理
TypeScript
初识vuex
vue项目安装包指令收集
上一篇文章      下一篇文章      查看所有文章
加:2021-08-21 15:16:46  更:2021-08-21 15:17:17 
 
开发: 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/23 9:09:52-

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