当前位置:网站首页>Small program wx.request simple Promise package
Small program wx.request simple Promise package
2022-08-10 05:48:00 【Brahma pigeon】
//public request jsimport {baseURL} from "./config.js"export default function request(option){return new Promise((resolve,reject)=>{wx.request({url: baseURL + option.url,method: option.method || 'get',data: option.data,success: resolve,fail:function(err){reject(err)}})})}// specific page data requestimport request from "./network.js"export function getMultiData(){return request({url: '/home/multidata'})}export function getHomeGoods(type,page){return request({url:'/home/data',data:{type,page}})}边栏推荐
- Minio分布式存储系统
- 三维点云分割
- Ten years of sharpening a sword!The digital collection market software, Link Reading APP is officially open for internal testing!
- tinymce富文本编辑器
- R中设置图形参数--函数par()详解
- Mockito基本使用指南
- IDEA的database使用教程(使用mysql数据库)
- I use this recruit let the team to improve the development efficiency of 100%!
- CSDN Markdown 之我见代码块 | CSDN编辑器测评
- impdp 导入数据
猜你喜欢
随机推荐
连接 Nacos 报超时错误
Pony语言学习(九)——泛型与模式匹配(终章)
再肝3天,整理了90个 NumPy 例子,不能不收藏!
Chain Reading|The latest and most complete digital collection sales calendar-08.02
你不知道的常规流
Minio分布式存储系统
图片批量添加水印批量缩放图片到指定大小
事务、存储引擎
训练集Loss收敛,但是测试集Loss震荡的厉害?
latex图片排版技巧总结
Link reading good article: What is the difference between hot encrypted storage and cold encrypted storage?
MySql constraints
第六次实验
PCL点云配准--ICP or keypoints+features
OSPF实验
非会员更改有道云笔记背景
各个架构指令集对应的机型
idm下载器如何使用 idm下载器使用技巧
ORACLE系统表空间SYSTEM占满无法扩充表空间问题解决过程
Chain Reading|The latest and most complete digital collection sales calendar-07.29









