小程序開發wx.getSystemInfo(OBJECT),獲取系統信息
2017-12-11
導讀:獲取系統信息。 OBJECT參數說明: 參數 類型 必填 說明 success Function 是 接口調用成功的回調 fail Function 否 接口調用失敗的回調函數 complete Function 否 接口調用結束的回調函數(調用成功...
獲取系統信息。
OBJECT參數說明:
參數 | 類型 | 必填 | 說明 |
---|---|---|---|
success | Function | 是 | 接口調用成功的回調 |
fail | Function | 否 | 接口調用失敗的回調函數 |
complete | Function | 否 | 接口調用結束的回調函數(調用成功、失敗都會執行) |
success回調參數說明:
參數 | 說明 | 最低版本 |
---|---|---|
brand | 手機品牌 | 1.5.0 |
model | 手機型號 | |
pixelRatio | 設備像素比 | |
screenWidth | 屏幕寬度 | 1.1.0 |
screenHeight | 屏幕高度 | 1.1.0 |
windowWidth | 可使用窗口寬度 | |
windowHeight | 可使用窗口高度 | |
language | 微信設置的語言 | |
version | 微信版本號 | |
system | 操作系統版本 | |
platform | 客戶端平臺 | |
fontSizeSetting | 用戶字體大小設置。以“我-設置-通用-字體大小”中的設置為準,單位:px | 1.5.0 |
SDKVersion | 客戶端基礎庫版本 | 1.1.0 |
示例代碼:
wx.getSystemInfo({
success: function(res) {
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)
}
})
更多微信小程序開發教程,關注hi小程序。
第二部分:如何開通一個小商店