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
共有 0 条评论