axios中post怎么传值
时间: 2023-08-24 13:13:53 浏览: 98
AJAX post 传值
在axios中,可以使用两种方式传递POST请求的参数第一种方式是params参数,以键值对的形式传递参数。比如:
axios({
method: "post",
url: "//填入接口地址",
params: {
key: "value"
}
}).then(res => {
console.log(res)
});
阅读全文
AJAX post 传值