uniapp封装request请求

新建fetch文件夹
api.js
export const api = {
// 默认请求就是get请求
user: {
url: '/user',
name: '用户信息',
method: 'GET',
},
}

url.js
export const baseURL = {
prod: 'http://localhost:5000', // 开发环境'
dev: 'http://localhost:5000', // 生产环境'
}

index.js

import { baseURL } from './url.js'

import { api } from './api.js'

let obj = {
headerGET: {
"Content-type":'applicat

uniapp封装request请求最先出现在Python成神之路

版权声明:
作者:dingding
链接:https://www.techfm.club/p/9301.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>