判斷小程序的API回調(diào)參數(shù)組件是否在當前版本可
在微信小程序開發(fā)的過程中,我們總會面對各種問題,比如如何判斷小程序的API回調(diào)參數(shù)組件等是否在當前版本可用?
wx.canIUse(String)
一、String參數(shù)說明: 使用${API}.${method}.${param}.${options}或者${component}.${attribute}.${option}方式來調(diào)用,例如:
${API} 代表 API 名字
${method} 代表調(diào)用方式,有效值為return, success, object, callback
${param} 代表參數(shù)或者返回值
${options} 代表參數(shù)的可選值
${component} 代表組件名字
${attribute} 代表組件屬性
${option} 代表組件屬性的可選值
二、判斷小程序的API回調(diào)參數(shù)組件等是否在當前版本可用例子:
wx.canIUse('openBluetoothAdapter')
wx.canIUse('getSystemInfoSync.return.screenWidth')
wx.canIUse('getSystemInfo.success.screenWidth')
wx.canIUse('showToast.object.image')
wx.canIUse('onCompassChange.callback.direction')
wx.canIUse('request.object.method.GET')
wx.canIUse('contact-button')
wx.canIUse('text.selectable')
wx.canIUse('button.open-type.contact')
以上就是如何判斷小程序的API回調(diào)參數(shù)組件等是否在當前版本可用?更多微信小程序開發(fā)內(nèi)容請繼續(xù)hishop小程序更新!
第二部分:如何開通一個小商店