小程序wx.canIUse使用

boolean wx.canIUse(string schema)

判断小程序的API,回调,参数,组件等是否在当前版本可用。

参数

string schema

使用 ${API}.${method}.${param}.${option} 或者 <code>${component}.${attribute}.${option} 方式来调用

返回值

boolean

当前版本是否可用

参数说明

  • ${API} 代表 API 名字</li><li><code>${method} 代表调用方式,有效值为return, success, object, callback
  • ${param} 代表参数或者返回值</li><li><code>${option} 代表参数的可选值或者返回值的属性
  • ${component} 代表组件名字</li><li><code>${attribute} 代表组件属性
  • ${option} 代表组件属性的可选值

示例代码

// 对象的属性或方法
wx.canIUse('console.log')
wx.canIUse('CameraContext.onCameraFrame')
wx.canIUse('CameraFrameListener.start')
wx.canIUse('Image.src')

// wx接口参数、回调或者返回值
wx.canIUse('openBluetoothAdapter')
wx.canIUse('getSystemInfoSync.return.safeArea.left')
wx.canIUse('getSystemInfo.success.screenWidth')
wx.canIUse('showToast.object.image')
wx.canIUse('onCompassChange.callback.direction')
wx.canIUse('request.object.method.GET')

// 组件的属性
wx.canIUse('live-player')
wx.canIUse('text.selectable')
wx.canIUse('button.open-type.contact')

分类小程序基础知识相关推荐:

小程序wx.env的使用 小程序wx.canIUse使用 小程序wx.base64ToArrayBuffer 小程序wx.arrayBufferToBase64 小程序wx.openSystemBluetoothSetting 小程序wx.openAppAuthorizeSetting 小程序wx.getWindowInfo 小程序wx.getSystemSetting 小程序wx.getSystemInfoSync 小程序wx.getSystemInfoAsync 小程序wx.getSystemInfo 小程序wx.getDeviceInfo 小程序wx.getAppBaseInfo 小程序wx.getAppAuthorizeSetting