简介
该用户还未填写简介
擅长的技术栈
未填写擅长的技术栈
可提供的服务
暂无可提供的服务
Vue路由传参时,刷新页面,参数将当成字符串来处理?
在练习编程路由导航传参时,发现将num:10传到积分页面通过computed属性加1变成11,但刷新了本页后并未按照预想的那样,变为11,而是字符串拼接成了101,然后,typeof查看传过去的Num类型console.log后发现,num的值变为了String类型。原来,当刷新本页时,路由地址附带参数进行了一次刷新,页面在读取num时,当成字符串处理了。 ...
在react项目中使用redux,出现Could not find “store“ in the context of “Connect(**)“, Either wrap**.
Could not find "store" in the context of "Connect(**)". Either wrap the root component in a
到底了