axios之前端发送get与post请求模板

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了axios之前端发送get与post请求模板相关的知识,希望对你有一定的参考价值。

import axios from "axios";

一、get

mounted() {
    axios
      .get(
        "/api/queryusertree?domId=" + this.domId + "&ownerId=" + this.ownerId,
        {
          headers: { Validate: "123456" }
        }
      )
      .then(response => {
        let object = response.data.data;
        let head = object;
        this.data = object.childList;
        console.log(this.data);
      })
      .catch(error => {
        console.log(error);
        alert("网络错误,不能访问");
      });
  },

 二、post

remove(userId) {
      let data = {
        domId: this.domId,
        ownerId: this.ownerId,
        userId: userId
      };//post传递对象到后台

      axios
        .post("/api/removedomuser", data, {
          headers: {
            //头部信息
            "Content-Type": "application/json;charset=utf-8",
            Validate: "123456" 
          }
        })
        .then(response => {
          let resultUtils = response.data;
          console.log(resultUtils);
        })
        .catch(error => {
          console.log(error);
          alert("网络错误,不能访问");
        });
    },

 

以上是关于axios之前端发送get与post请求模板的主要内容,如果未能解决你的问题,请参考以下文章

axios 全攻略之基本介绍与使用(GET 与 POST)

axios 全攻略之基本介绍与使用(GET 与 POST)

axios 全攻略之基本介绍与使用(GET 与 POST)

axios 全攻略之基本介绍与使用(GET 与 POST)

axios 全攻略之基本介绍与使用(GET 与 POST)

axios发送post请求node服务器无法通过req.body获取参数