通俗易懂的axios
Posted ll15888
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通俗易懂的axios相关的知识,希望对你有一定的参考价值。
get的两种请求:
methods: //axios.get的发送参数有两种,两个ajax请求函数都可实现 sendGetByStr() //1.get通过直接发字符串拼接 axios.get(`get.php?name=$this.users.name&age=$this.users.name`)
.then(function (response) console.log(response.data); ) .catch(function (error) console.log(error); ); , sendGetByObj() //2.get通过params选项 axios.get(`get.php?`, params: name:this.users.name, age:this.users.age )
.then(function (response) console.log(response.data); ) .catch(function (error) console.log(error); ); )
post的一种
methods: sendPsot() axios.post(‘post.php‘, name: this.users.name, age: this.users.age, ) .then(function (response) console.log(response); ) .catch(function (error) console.log(error); );
以上是关于通俗易懂的axios的主要内容,如果未能解决你的问题,请参考以下文章