URLSearchParams解决列表页与详情页跳转带参数

本文介绍了在React应用中如何使用URLSearchParams和URL API来在列表页跳转到详情页并保持参数,即使在页面刷新后仍能获取参数。通过设置搜索参数并利用useHistory和useLocation钩子,可以在详情页正确接收和处理这些参数,实现数据请求。此外,还提供了示例代码展示具体实现过程。
摘要由CSDN通过智能技术生成

案例使用场景:

列表页跳转详情页 带上id 等参数

详情页获取参数判断是否有值  有值的情况下 请求数据

在react 里面也提供了各种获取query和search的方法  ,params需要拼接字符串,query  和 state 方式 经过刷新之后不能获得之前传递的参数值

这里提供另外一种可以刷新后也获取数据的浏览器内置的API接口

这个API就是URLSearchParams()以及URL()。 

// 从整个 url 获取
new URL('https://blog.csdn.net/Embrace924/wordpress?id=924
').searchParams.get('id');


// 从 url 参数部分 获取
new URLSearchParams('?id=924').get('id');

URLSearchParams()以及URL(),还有更多的用法:https://www.zhangxinxu.com/wordpress/2019/08/js-url-urlsearchparams/

 

此处阐述一下该案例情况下使用方法

列表页 发起

1.跳转的地方

<a  key='info'
    onClick={() => {
      history.push({
         pathname: '/list/list-detail',
         search: `?id=${id}&type=view`
       })
    }}>
    查看详情
</a>

2.history 来源

import { useHistory } from 'react-router-dom'
 
const TableList: React.FC = () => {
 
const history = useHistory()

}

详情页 接收

1.接收history里的search字段

在react 中获取

import { useLocation } from 'react-router-dom'

// 列表页传入  详情页接收的字段
export interface ILocationState {
  id: string
  type: string
}

const DetailForm: React.FC = () => {
  const location = useLocation<ILocationState>()
  const params = new URLSearchParams(location.search)
  const id = params.get('id')

 } 

 

案例: 浏览器控制台Console   测试

https://developer.mozilla.org/zh-CN/docs/Web/API/URLSearchParams/URLSearchParams

 var url = new URL('https://example.com?foo=1&bar=2');
 var params = new URLSearchParams(url.search);

 params.get('foo') => 1
 params.get('bar') => 2
 


 2.判断参数是否有值  有值的情况下handleInfo请求数据 存当前id

  const [detailId, setDetailId] = useState('')

  useEffect(() => {
    if (
      params.get('id') !== '' &&
      params.get('id') !== undefined &&
      params.get('id') !== null
    ) {
       handleInfo(params.get('id'))
       setDetailId(params.get('id'))

    } else {
       setDetailId('')
     }
  }, [detailId])

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Embrace924

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值