vue中使用Post
get的使用this.$axios.get("/api/Main/InputValue",{params:{ //传参json:"123"}}).then(function(res){//console.log(res)}).catch(function(err){console.log("请求...
·
get的使用
this.$axios.get("/api/Main/InputValue",{
params:{ //传参
json:"123"
}
})
.then(function(res){
//console.log(res)
})
.catch(function(err){
console.log("请求失败233");
});
post的使用
this.$axios.post("/api/Main/posttest",{json:"123"})//传参
.then(function(res){
console.log(res)
})
.catch(function(err){
console.log("请求失败233");
});
post和get传参数的方式是不一样的,写post的时候如果在params里面传参数,后台是收不到的~~~~
更多推荐
已为社区贡献10条内容
所有评论(0)