关联普通二维码 如果用户微信版本过低不支持小程序 就进不了小程序。
这时也没法提示用户升级,用户还以为这个二维码不对,很无奈。
可以设置最低基础库版本
参考
https://kf.qq.com/touch/scene_faq.html?scene_id=kf4595
压根进不了小程序啊 扫一扫得到的结果是一串字符
页面的app.js里做判断
ios版 6.5.3 应该还不支持小程序?
wx.getSystemInfo({ success: function(res) { console.log(res.model) console.log(res.pixelRatio) console.log(res.windowWidth) console.log(res.windowHeight) console.log(res.language) console.log(res.version) console.log(res.platform) } })
在你的页面调用获取当前手机的信息Api 然后 判断版本。给他一个showModel提示 就可以了