微信小程序API設(shè)備概覽,微信小程序綁定設(shè)備
2017-12-22
導(dǎo)讀:微信小程序API設(shè)備概覽 系統(tǒng)信息——(wx.getSystemInfo、wx.getSystemInfoSync) 網(wǎng)絡(luò)狀態(tài)——(wx.getNetworkType) 重力感應(yīng)——(wx.onAccelerometerChange) 羅 盤——(wx.onCompassChange) 撥打電話——...
微信小程序API設(shè)備概覽
- 系統(tǒng)信息——(wx.getSystemInfo、wx.getSystemInfoSync)
- 網(wǎng)絡(luò)狀態(tài)——(wx.getNetworkType)
- 重力感應(yīng)——(wx.onAccelerometerChange)
- 羅 盤——(wx.onCompassChange)
- 撥打電話——(wx.makePhoneCall)
- 掃 碼——(wx.scanCode)
wx.getSystemInfo(OBJECT)
獲取系統(tǒng)信息。
OBJECT參數(shù)說明:
參數(shù) | 類型 | 必填 | 說明 |
---|---|---|---|
success | Function | 是 | 接口調(diào)用成功的回調(diào) |
fail | Function | 否 | 接口調(diào)用失敗的回調(diào)函數(shù) |
complete | Function | 否 | 接口調(diào)用結(jié)束的回調(diào)函數(shù)(調(diào)用成功、失敗都會執(zhí)行) |
success回調(diào)參數(shù)說明:
屬性 | 說明 |
---|---|
model | 手機(jī)型號 |
pixelRatio | 設(shè)備像素比 |
windowWidth | 窗口寬度 |
windowHeight | 窗口高度 |
language | 微信設(shè)置的語言 |
version | 微信版本號 |
system | 操作系統(tǒng)版本 |
platform | 客戶端平臺 |
示例代碼:
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)
}
})
wx.getSystemInfoSync()
獲取系統(tǒng)信息同步接口
示例代碼:
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小程序。
第二部分:如何開通一個小商店