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

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

时间:2019-11-30 21:03:02      阅读:298      评论:0      收藏:0      [点我收藏+]

标签:col   发送   move   content   api   OLE   dom   pos   ica   

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请求模板

标签:col   发送   move   content   api   OLE   dom   pos   ica   

原文地址:https://www.cnblogs.com/yanl55555/p/11963743.html

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