vue在页面加载时触发的函数
//页面加载时触发的函数
methods: {
getEmp: function() {
// console.log(this.joke);
var that = this;
axios.post("http://localhost:8080/allEmp"
).then(function(response) {
console.log(response.data);
that.emps = response.data;
// console.log(that.emps);
}, function(err) {
console.log(err);
})
},
},
mounted:function(){
this.getEmp();
}
本文来自博客园,作者:没有烦恼的猫猫,转载请注明原文链接:https://www.cnblogs.com/maomao777/p/16084734.html