<返回更多

vue 请求公共接口

2020-08-13    
加入收藏

需求:有几组数据,是好多页面都需要的,后台给每组数据写到一个接口里了,所以我需要请求多个公共接口,我的想法就定义了一个公共js,然后所需的页面去引用;

第一种方法:

common.js:

 var commonObj ={
    async GetDepartment(fn){
    var a =await axIOS.post('/api/common/getDepartment');
    fn(a)
  }
};
export default commonObj 

所需的vue页:

import commonObj  from '@/common/js/common.js'  //先引入文件

commonObj.GetDepartment(function(d){
  console.log(d)
})
vue 请求公共接口

 

第二种:

common.js:

export async function GetDepartment(fn){
    var a =await axios.post('/api/common/getDepartment');
    return a;
  };

所需的vue页:

import {GetDepartment} from '@/common/js/common.js' //先引入文件  解构

GetDepartment().then(d=>{
  console.log(d);
});
vue 请求公共接口

 

其他方法:https://www.jianshu.com/p/9aa2f6c379dd

声明:本站部分内容来自互联网,如有版权侵犯或其他问题请与我们联系,我们将立即删除或处理。
▍相关推荐
更多资讯 >>>