首先,要判断当前用户的微信版本以及是安卓还是iOS,要调用方法wx.getSystemInfo() 官方文档:https://developers.weixin.qq.com/miniprogram/dev/api/system/system-info/wx.getSystemInfo.html
wx.getSystemInfo({ success:function(res) { } })
在获取成功的success方法中,res中包含相关信息,接下来就是做判断:
1.微信版本判断方法
compareVersion(v1, v2) { v1 = v1.split('.') v2 = v2.split('.') var len = Math.max(v1.length, v2.length) while(v1.length v1.push('0') } while(v2.length v2.push('0') } for(var i = 0; i var num1 = parseInt(v1[i]) var num2 = parseInt(v2[i]) if (num1 > num2) { return 1 } else if (num1 < num2) { return -1 } } return 0}
微信版本判断非常重要,涉及到版本兼容性.更关乎整个小程序的功能完整性.
2.操作系统判断
res.system.indexOf('iOS') > -1 是iOS res.system.indexOf('android') >-1 是安卓
可根据手机操作系统不同实现特殊的功能.
来源地址:https://blog.csdn.net/weixin_45828554/article/details/130611634