微信小程序判断手机系统

index.wxml文件

Android or IOS
{{textinfo}}

index.js文件

Page({
data: {
textinfo:’’
},
getphonesystem:function(){
var that = this;
wx.getSystemInfo({
success: function(res) {
that.setData({
textinfo : res.system// 这里会显示手机系统信息
});
},
})
},
})

官方文档地址: https://developers.weixin.qq.com/miniprogram/dev/api/system/system-info/wx.getSystemInfo.html

你可能感兴趣的:(微信小程序判断手机系统)