美文网首页
常用工具

常用工具

作者: 想溜了的蜗牛 | 来源:发表于2021-09-14 08:59 被阅读0次

    获取链接上的参数值方法:

    1. 使用原生方法,旧的浏览器需要兼容
    const query = new URLSearchParams(props.location.search);
    console.log(query.get('hello'));
    

    refer: here

    1. 使用 query-string
    npm install -save query-string  // 安装
    
    // js code
    const queryString = require('query-string');
    var parsed = queryString.parse(this.props.location.search); // react router 方法
    console.log(parsed.param); // replace param with your own 
    

    refer: here

    相关文章

      网友评论

          本文标题:常用工具

          本文链接:https://www.haomeiwen.com/subject/xazqgltx.html