methods:{
update:function(){
axios.post('http://localhost/public/index.php/index/Dbxx/upload', {
title: this.title, // 参数 firstName
words: this.words, // 参数 lastName
})
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.log(error);
});
}
},
网友评论