uniapp 小程序获取设备型号

使用uniapp开发微信小程序时获取手机设备型号很简单,此方法还适用于H5,以及生成的其他小程序,下面给大家写出两种方法实现。

	onLoad() {
		uni.getSystemInfo({
			success: function(res) {
				console.log(res.model);//获取手机型号
			}
		});
	},

以上方法在生命周期直接调用getSystemInfo函数即可,res除了包含手机型号还包含很多其他属性,下面给出官方地址,大家参考

 

方法二:

onLoad() {
		//本方法还能获取更多信息
		const res = uni.getSystemInfoSync();
		console.log(res.brand);//获取手机品牌
		console.log(res.model); //获取手机型号
	},

以上方法也是可以的

效果展示:

 

 

更多属性请参考:

https://uniapp.dcloud.io/api/system/info?id=getsysteminfo

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.duanlonglong.com/qdjy/1177.html