Vue页面加载时,触发某个函数的方法
mounted:function(){this.createcode();//需要触发的函数}//下面是createcode函数createcode(){var self = this;axios.post("/verifycode",{name:this.name,id:this.id}).then(function(res){...
·
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;
});
},
更多推荐
已为社区贡献11条内容
所有评论(0)