this.$http.get(this.$server + '路径', { // 我把服务器路径写在main.js里面了
params: {
//json数据
},
}).then(function (response) {
console.log(response);
// 数据是response.data
}).catch(function (error) {
console.log(error);
});
this.$http.post(this.$server + '路径/', {
}).then(function (response) {
console.log(response);
// 数据是response.data
}).catch(function (error) {
console.log(error);
});
前端post和get请求模板
最新推荐文章于 2024-06-24 10:35:00 发布