出现这个的原因是因为定义的初始currentPage变量为整型,后面赋值时变为了string类型。
因为我是把这个currentPage变量存到了localStorage里面,存进去的是int类型,拿出来的就是string类型了,所以再次复制给currentPage变量会有类型冲突。
解决方法:将localStorage的数据变量拿出来时转换成int类型就好( 通过parseInt()函数实现 ),保持前后变量赋值始终一致。文章来源:https://www.toymoban.com/news/detail-610910.html
let localstorage_current_page=1 //初始化为1,若一开始localstorage没有缓存,则显示首页面。
if(localStorage.getItem("current_page")){
this.current_page=parseInt(localStorage.getItem("current_page"))
localstorage_current_page=parseInt(localStorage.getItem("current_page"))
}
当然一开始的data()里面定义变量也要为整型文章来源地址https://www.toymoban.com/news/detail-610910.html
data(){
current_page: 1,
}
到了这里,关于[Vue warn]: Invalid prop: type check failed for prop “currentPage“. Expected String with value “1“的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!