小程序開發(fā)wx.getSystemInfoSync,獲取系統(tǒng)信息同步接口
2017-12-11
導(dǎo)讀:獲取系統(tǒng)信息同步接口 同步返回參數(shù)說明: 參數(shù) 說明 最低版本 brand 手機(jī)品牌 1.5.0 model 手機(jī)型號(hào) pixelRatio 設(shè)備像素比 screenWidth 屏幕寬度 1.1.0 screenHeight 屏幕高度 1.1.0 windowWidth 可使用窗...
獲取系統(tǒng)信息同步接口
同步返回參數(shù)說明:
參數(shù) | 說明 | 最低版本 |
---|---|---|
brand | 手機(jī)品牌 | 1.5.0 |
model | 手機(jī)型號(hào) | |
pixelRatio | 設(shè)備像素比 | |
screenWidth | 屏幕寬度 | 1.1.0 |
screenHeight | 屏幕高度 | 1.1.0 |
windowWidth | 可使用窗口寬度 | |
windowHeight | 可使用窗口高度 | |
language | 微信設(shè)置的語言 | |
version | 微信版本號(hào) | |
system | 操作系統(tǒng)版本 | |
platform | 客戶端平臺(tái) | |
fontSizeSetting | 用戶字體大小設(shè)置。以“我-設(shè)置-通用-字體大小”中的設(shè)置為準(zhǔn),單位:px | 1.5.0 |
SDKVersion | 客戶端基礎(chǔ)庫版本 | 1.1.0 |
示例代碼:
try {
var res = wx.getSystemInfoSync()
console.log(res.model)
console.log(res.pixelRatio)
console.log(res.windowWidth)
console.log(res.windowHeight)
console.log(res.language)
console.log(res.version)
console.log(res.platform)
} catch (e) {
// Do something when catch error
}
更多微信小程序開發(fā)教程,關(guān)注hi小程序。
第二部分:如何開通一個(gè)小商店