代码如下:new Vue({methods: {post: function (url, data) {
$.ajax({ type: 'POST',
url: '....'+url+'.ashx',
data:data,
})
}},created () {this.post('XXX', 'XXX').done(function(res){ console.log(res)
})}})报错:this.post(...) is undefined对vue不够了解,这里为什么不能调用methods的post方法,因该怎么写才能拿到post方法,求高手指点
添加回答
举报
0/150
提交
取消