美文网首页
如何在html页面之间使用localStorage传递参数

如何在html页面之间使用localStorage传递参数

作者: picassagirl | 来源:发表于2022-09-14 09:35 被阅读0次

    1、在需要传递参数的主html页面的标签里绑定参数:user.id

    @click="goDetail(user.id)"
    

    2、在methods:{}里写函数:

    goDetail(id){
                localStorage.uid = id
               }    
    

    3、在跳转页面调用参数:

    mounted(){
            this.uid=localStorage.uid;
            }
    

    相关文章

      网友评论

          本文标题:如何在html页面之间使用localStorage传递参数

          本文链接:https://www.haomeiwen.com/subject/gspkortx.html