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

前端页面接口文件统一管理,适用于vue、uniapp、react

时间:2021-01-06 12:04:42      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:conf   ***   react   ror   res   pos   ==   文件   管理   

前端页面在根目录下的文件夹pages=》index=》index.vue

接口统一在根目录下的文件夹api=》index(自己模块归类文件夹里)=》...

前端页面代码:

引入统一的接口文件

import { getAds, getData } from ‘../../api/index/index.js‘
 
使用如下:
getData().then(res => {
                    if (res.code == 200) {
                       
                    } else {
                        
                    }
                }).catch(error => {
       
                })
前端接口统一代码:
import http from ‘@/api/http.js‘
import config from ‘@/config/index.js‘
 
export function getAds(params) {
    return http.get(`****/ads`, params);
}
export function getData (data) {
    return http.post(‘***/getData‘,data);
}

前端页面接口文件统一管理,适用于vue、uniapp、react

标签:conf   ***   react   ror   res   pos   ==   文件   管理   

原文地址:https://www.cnblogs.com/james-L/p/14225034.html

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