今天在敲代码出现了bug
想获取res的值,写成这样了
自己出现的bug是插值表达式没有用div包起来,这是自己第一个bug
第二个bug,定义的方法要用到
let that = this;
之后this用that替换了
源码:用let替换之后就好了
baseData(){ let that = this; axios.post('http://localhost:9090/text/text-only',{ imgBase64: '', imgType: 'png' }).then(function(res){ that.resdata = res.data console.log(res.data) }) } },
就出来了