通俗易懂的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的主要内容,如果未能解决你的问题,请参考以下文章

通俗易懂理解ORBSLAM2跟踪模块

HDFS的高可用(HA)--------通俗易懂的分析

麻烦用比较通俗易懂的语言帮我介绍一下JMS,中间件,webService,WSDL以及SOAP之间的关系.

最通俗易懂的JavaScript实用案例

最通俗易懂的JavaScript实用案例

通俗易懂的JUC源码剖析-ThreadPoolExecutor