Axios调用后台接口

2020-09-03 10:48:28 浏览数 (1)

代码语言:javascript复制
 axios.post('http:phpapi.com', {
   key: key,
   type: 'getdata',
   data: {
      id: 1
    }
 })
.then(function (res) {
     // 成功的回调
     console.log(res)
 })
 .catch(function (error) {
      // 失败的回调
     console.log(error);
 });

0 人点赞