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

js axios发起get请求

时间:2020-05-02 09:31:50      阅读:87      评论:0      收藏:0      [点我收藏+]

标签:ios   get   ram   http   post请求   OLE   article   pre   title   

js axios发起get请求

axios.get(‘http://rap2api.taobao.org/app/mock/238720/getMapping‘,
            {
                params: {
                    userId: "1"
                }
            })
            .then(function (response) {
                console.log(response);
            })
            .catch(function (error) {
                console.log(error);
            });

js axios发起post请求

axios.post(‘http://rap2api.taobao.org/app/mock/238720/postMapping‘,
            {
                params: {
                    userId: "1"
                }
            })
            .then(function (response) {
                console.log(response);
            })
            .catch(function (error) {
                console.log(error);
            });

js axios发起get请求

标签:ios   get   ram   http   post请求   OLE   article   pre   title   

原文地址:https://www.cnblogs.com/vwvwvwgwgvervae/p/12815708.html

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