其实可以自动判断小程序环境
Closed this issue · 0 comments
BuptStEve commented
其实可以这样判断是不是微信小程序的环境
export const isWx = () =>
typeof wx !== 'undefined' &&
typeof wx.request === 'function'
这样一来小程序端初始化时就不用手动填写 reqType: 'wx'
了。
Closed this issue · 0 comments
其实可以这样判断是不是微信小程序的环境
export const isWx = () =>
typeof wx !== 'undefined' &&
typeof wx.request === 'function'
这样一来小程序端初始化时就不用手动填写 reqType: 'wx'
了。