uni.getExtConfig(OBJECT)

获取第三方平台自定义的数据字段。

平台差异说明

5+AppH5微信小程序支付宝小程序百度小程序头条小程序
xxx

OBJECT参数说明

属性类型默认值必填说明
successfunction接口调用成功的回调函数
failfunction接口调用失败的回调函数
completefunction接口调用结束的回调函数(调用成功、失败都会执行)

success 回调参数说明

属性类型说明
extConfigObject第三方平台自定义的数据

Tips

  • 本接口暂时无法通过 uni.canIUse判断是否兼容,开发者需要自行判断 uni.getExtConfig 是否存在来兼容。示例代码
  1. if (uni.getExtConfig) {
  2. uni.getExtConfig({
  3. success(res) {
  4. console.log(res.extConfig)
  5. }
  6. })
  7. }

uni.getExtConfigSync()

uni.getExtConfig 的同步版本。

平台差异说明

5+AppH5微信小程序支付宝小程序百度小程序头条小程序
xxx

返回值(Object)

属性类型说明
extConfigObject第三方平台自定义的数据

Tips

  • 本接口暂时无法通过 uni.canIUse判断是否兼容,开发者需要自行判断 uni.getExtConfigSync 是否存在来兼容。代码示例
  1. const extConfig = uni.getExtConfigSync ? uni.getExtConfigSync() : {}
  2. console.log(extConfig)

发现错误?想参与编辑?在 GitHub 上编辑此页面!