open-data 开放数据

解释:用于展示百度 App 开放的数据。

Web 态说明:Web 态暂不支持显示用户信息。Web 态中将统一展示默认值。

属性说明

属性名类型默认值必填说明

type

String

开放数据类型

type 有效值

说明
userNickName用户昵称
userAvatarUrl用户头像
userGender用户性别

示例

跳转编辑工具

在开发者工具中打开

在 WEB IDE 中打开

扫码体验

代码示例

百度智能小程序

请使用百度APP扫码

代码示例

  • SWAN
  1. <view class="wrap">
  2. <view class="card-area">
  3. <view class="display-area border-bottom">
  4. <open-data class="display-area-image" type="userAvatarUrl"></open-data>
  5. </view>
  6. <view class="list-area border-bottom">
  7. <view class="list-item-key-4">昵称</view>
  8. <open-data class="list-item-value" type="userNickName"></open-data>
  9. </view>
  10. <view class="list-area">
  11. <view class="list-item-key-4">性别</view>
  12. <open-data class="list-item-value" type="userGender"></open-data>
  13. </view>
  14. </view>
  15. </view>