小程序用户登录
摘要:APP({ login() { // 登录方法 wx.login({ success: res => { const code = res.code wx.request({ url: 'http://123.207.32.32:3000/login', method: 'post', data:
阅读全文
小程序网络请求封装
摘要:export default function request(options) { return new Promise((reslove, reject) => { wx.request({ url: options.url, method: options.method || 'get', d
阅读全文