要获取当前设备的手机型号,您可以使用uni-app提供的uni.getSystemInfo() API来实现此目的。
代码示例:
uni.getSystemInfo({success: function(res) {console.log("手机型号:" + res.platform)}
})
该方法会返回一个包含设备信息的JSON对象,其中的platform属性就是当前设备的型号。
当然也可以检测手机型号
uni.getSystemInfo({success: function(res) {var system = '';if (res.platform == 'android') system = parseInt(res.system.substr(8));if (res.platform == 'ios') system = parseInt(res.system.substr(4));if (res.platform == 'android' && system < 6) {console.log('手机版本暂时不支持');return uni.showToast({title: '手机版本暂时不支持',icon: 'none'})}if (res.platform == 'ios' && system < 11) {console.log('手机版本暂时不支持');return uni.showToast({title: '手机版本暂时不支持',icon: 'none'})}}
})