溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

微信小程序API設備怎么綁定

發(fā)布時間:2022-03-07 14:48:52 來源:億速云 閱讀:185 作者:iii 欄目:開發(fā)技術

這篇文章主要介紹了微信小程序API設備怎么綁定的相關知識,內(nèi)容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇微信小程序API設備怎么綁定文章都會有所收獲,下面我們一起來看看吧。

微信小程序API設備概覽


  • 系統(tǒng)信息——(wx.getSystemInfo、wx.getSystemInfoSync)

  • 網(wǎng)絡狀態(tài)——(wx.getNetworkType)

  • 重力感應——(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)用結束的回調(diào)函數(shù)(調(diào)用成功、失敗都會執(zhí)行)

success回調(diào)參數(shù)說明:

屬性 說明
model 手機型號
pixelRatio 設備像素比
windowWidth 窗口寬度
windowHeight 窗口高度
language 微信設置的語言
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}

關于“微信小程序API設備怎么綁定”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對“微信小程序API設備怎么綁定”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業(yè)資訊頻道。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。

AI