美文网首页
vue项目获取url参数

vue项目获取url参数

作者: 泪滴在琴上 | 来源:发表于2021-04-19 00:36 被阅读0次

    假设我们的url是http://www.demo.com/#/?channel=123&user=user

    前的内容不影响

    1、首先先下载:

    npm i qs 
    

    2、然后引入 :

    import qs from 'qs'
    

    3、调用 :

    hash模式

    import qs from 'qs'
    const query = qs.parse(location.hash.substring(3))
    let channel = query.channel
    let user = query.user
    

    history模式

    import qs from 'qs'
    const query = qs.parse(location.search.substring(1))
    let channel = query.channel
    let user = query.user
    

    ————————————————
    版权声明:本文为CSDN博主「量子物理学」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
    原文链接:https://blog.csdn.net/yiyihuazi/article/details/105388265

    相关文章

      网友评论

          本文标题:vue项目获取url参数

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