小程序--获取手机型号
生活随笔
收集整理的這篇文章主要介紹了
小程序--获取手机型号
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
手機型號:{{mobileModel}}手機像素比:{{mobileePixelRatio}}窗口寬度:{{windowWidth}}窗口高度:{{windowHeight}}微信設置的語言:{{language}}微信版本號:{{version}}
var app = getApp()
Page({
data: {
mobileModel:'',
mobileePixelRatio:'',
windowWidth:'',
windowHeight:'',
language:'',
version:''
},
onLoad: function () {
var that=this;
wx.getSystemInfo({
success: function(res) {
that.setData({
mobileModel:res.model,
mobileePixelRatio:res.pixelRatio,
windowWidth:res.windowWidth,
windowHeight:res.windowHeight,
language:res.language,
version:res.version
})
}
})
}
})
總結
以上是生活随笔為你收集整理的小程序--获取手机型号的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 28 网络文件共享服务
- 下一篇: php通过api获取天气信息,调用API