使用axios发送get和post请求

使用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模块。

你可能感兴趣的:(javascript,前端,vue.js)