方法论-如何学习
🙅
Vuex官网:https://vuex.vuejs.org/zh/
Vuex 是一个专为 Vue.js 应用程序开发的状态管理模式。它采用集中式存储管理应用的所有组件的状态,并以相应的规则保证状态以一种可预测的方式发生变化。
Vuex 是专门为 Vue.js 设计的状态管理库,以利用 Vue.js 的细粒度数据响应机制来进行高效的状态更新。
PWA应用是指那些使用指定技术和标准模式来开发的web应用,这将同时赋予它们web应用和原生应用的特性。
获取 url
中的参数
function getUrlParam(sUrl, sKey) {
const params = (sUrl.split('#')[0].split('?')[1] || '').split('&')
let res = {}
if (params.length > 0) {
params.forEach(item => {
const [key, value] = item.split('=')
if (typeof res[key] === 'undefined') { // 如果res中不存在key
res[key] = value
} else if (Array.isArray(res[key])) {
res[key].push(value)
} else if (typeof res[key] === 'string') { // 如果已存在且同名
res[key] = [res[key], value]
}
})
return sKey ? (res[sKey] || '') : res
}
return res
}
getUrlParam('http://www.nowcoder.com?key=1&key=2&key=3&test=4#hehe', 'key')
测试: