码迷,mamicode.com
首页 > 移动开发 > 详细

vue.js axios call api example

时间:2021-06-28 19:29:47      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:splay   xxx   something   ima   eth   head   data   finally   rgba   


代码样例:

技术图片

 

 

 code:

技术图片
let url = ‘/api/xxx/yyy‘;
            let paramObj = JSON.stringify(
                {
                }
            );
            axios
                .post(url,
                    paramObj,
                    {
                        headers: {
                            ‘Content-Type‘: ‘application/json; charset=utf-8‘
                        }
                    })
                .then(response => {
                    if (response.data.ResponseStatus) {
                        //do success coding...
                    }
                    else {
                        //do fail coding...
                    }
                })
                .catch(error => {
                    console.log(error)
                })
                .finally(() => {
                    //do something...
                })
Source Code

 

vue.js axios call api example

标签:splay   xxx   something   ima   eth   head   data   finally   rgba   

原文地址:https://www.cnblogs.com/insus/p/14939854.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!