使用axios发送get和post请求

发布时间:2023年12月31日

使用axios发送get和post请求的方法如下:

1.发送GET请求:

axios.get(url)
  .then(response => {
    // 请求成功的处理逻辑
    console.log(response.data);
  })
  .catch(error => {
    // 请求失败的处理逻辑
    console.error(error);
  });

2.发送POST请求:

axios.post(url, data)
  .then(response => {
    // 请求成功的处理逻辑
    console.log(response.data);
  })
  .catch(error => {
    // 请求失败的处理逻辑
    console.error(error);
  });

其中,url为请求的地址,data为需要发送的数据。在POST请求中,data可以是一个对象,axios会将其转换为JSON格式的数据进行发送。

以上代码示例假设已经安装了axios,并且在项目中引入了axios模块。

文章来源:https://blog.csdn.net/m0_74265396/article/details/135311241
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。