假设我们的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

————————————————

版权声明:本文为博主「量子物理学」的原创文章