您好,登錄后才能下訂單哦!
這篇文章主要介紹了微信小程序API設備怎么綁定的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇微信小程序API設備怎么綁定文章都會有所收獲,下面我們一起來看看吧。
系統信息——(wx.getSystemInfo、wx.getSystemInfoSync)
網絡狀態——(wx.getNetworkType)
重力感應——(wx.onAccelerometerChange)
羅 盤——(wx.onCompassChange)
撥打電話——(wx.makePhoneCall)
掃 碼——(wx.scanCode)
獲取系統信息。
OBJECT參數說明:
參數 | 類型 | 必填 | 說明 |
---|---|---|---|
success | Function | 是 | 接口調用成功的回調 |
fail | Function | 否 | 接口調用失敗的回調函數 |
complete | Function | 否 | 接口調用結束的回調函數(調用成功、失敗都會執行) |
success回調參數說明:
屬性 | 說明 |
---|---|
model | 手機型號 |
pixelRatio | 設備像素比 |
windowWidth | 窗口寬度 |
windowHeight | 窗口高度 |
language | 微信設置的語言 |
version | 微信版本號 |
system | 操作系統版本 |
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) } })
獲取系統信息同步接口
示例代碼:
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}
關于“微信小程序API設備怎么綁定”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“微信小程序API設備怎么綁定”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。