美文网首页前端
Vue页面加载时,触发某个函数的方法

Vue页面加载时,触发某个函数的方法

作者: 王镇_ee87 | 来源:发表于2020-12-16 08:59 被阅读0次
    起因 需要在加载页面的时候调用生成验证码的click事件函数
    image
    解决方法如下,利用Vue中的mounted
    mounted:function(){
          this.createcode();//需要触发的函数
        }
    //下面是createcode函数
     createcode(){
            var self = this;
            axios.post("/verifycode",{name:this.name,id:this.id}).then(function(res){
              //console.log(res);
              var url= JSON.parse(res.data.code64);
              //console.log(url)
              self.urlIMg  = url.data.base64Code;
     
            });
          },
    

    相关文章

      网友评论

        本文标题:Vue页面加载时,触发某个函数的方法

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