stars-oceans / yhc

个人博客,我个人在学习,和开发中遇到的一些问题总结。
1 stars 0 forks source link

Vue2 页面首次加载获取 URL?后面参数时,不通过 this.$route.query 获取参数 #37

Open stars-oceans opened 10 months ago

stars-oceans commented 10 months ago
/* eslint-disable */
export default function getUrlKey (name) {
        return decodeURIComponent((new RegExp('[?|&]' + name + '=' + '([^&;]+?)(&|#|;|$)').exec(location.href) || [, ""])[1].replace(/\+/g, '%20')) || null
    }