boolean qq.canIUse(string schema)

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

参数

string schema

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

返回值

boolean

当前版本是否可用

参数说明

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

示例代码

  1. qq.canIUse('openBluetoothAdapter')
  2. qq.canIUse('getSystemInfoSync.return.screenWidth')
  3. qq.canIUse('getSystemInfo.success.screenWidth')
  4. qq.canIUse('showToast.object.image')
  5. qq.canIUse('onCompassChange.callback.direction')
  6. qq.canIUse('request.object.method.GET')
  7. qq.canIUse('live-player')
  8. qq.canIUse('text.selectable')
  9. qq.canIUse('button.open-type.contact')