localStorage储存Boolean类型时出现的问题
页面首次进入能取到Boolean类型,当刷新页面之后,取不到Boolean类型解决办法,我们可以在存boolean类型时转换为字符串类型store.commit('account/setSecretary',res.data.ifSecretary ? 'true' : 'false')...
·
页面首次进入能取到Boolean类型,当刷新页面之后,取不到Boolean类型
解决办法,我们可以在存boolean类型时转换为字符串类型
store.commit('account/setSecretary',res.data.ifSecretary ? 'true' : 'false')
更多推荐

所有评论(0)