swan.getExtConfigSync

基础库 1.10.8 版本开始支持。

解释swan.getExtConfig的同步版本。

方法参数

返回说明

参数类型说明

extConfig

Object

第三方平台自定义的数据

若接口调用失败,会抛出一个标准的Error对象。

示例

跳转编辑工具

在开发者工具中打开

在 WEB IDE 中打开

扫码体验

代码示例

百度智能小程序

请使用百度APP扫码

图片示例

swan.getExtConfigSync - 图2

代码示例

  • SWAN
  • JS
  1. <view class="wrap">
  2. <view class="card-area">
  3. <view class="top-description border-bottom">获取第三方平台自定义的数据字段</view>
  4. <button bindtap="getExtConfig" type="primary" hover-stop-propagation="true">点击获取</button>
  5. </view>
  6. </view>

Bug & Tip

  • Tip:swan.getExtConfigSync 暂时无法通过 swan.canIUse 判断是否兼容,开发者需要自行判断 swan.getExtConfigSync 是否存在兼容。
  • Tip:需要小程序授权第三方平台,并且添加自定义字段值(例:{"extEnable":true,"ext":{"appid":"xxx"}}),swan.getExtConfigSync() 方法请求的时候返回的 extConfig 值才不为{}。