index.wxml文件
Android or IOS
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