微信小程序
ZXH0122
越努力越幸运,加油!
展开
-
小程序中的navigator 跳转方式
navigator中的open-type可以决定小程序的跳转方式; 是否关闭当前页面 或者说以何种方式进行跳转 标签<navigator>中 open-type属性表示小程序的跳转方式; open-type='redirectTo' open-type='navigateTo' 还有其他的跳转方式 地址: https://developers.weixin.qq.com/miniprogram/dev/component/navigator.html redirectTo:关闭当原创 2020-12-09 16:26:06 · 1285 阅读 · 1 评论 -
怎么封装微信小程序的数据请求呢??
const baseUrl = 'https://api.it120.cc'; const http = ({ url = '', param = {}, ...other } = {}) => { wx.showLoading({ title: '请求中,请耐心等待..' }); let timeStart = Date.now(); return new Promise((resolve, reject) => { wx.re原创 2020-11-09 14:35:29 · 277 阅读 · 0 评论