小程序开发之组件open-data(展示微信开放的数据)

时间:2024-10-07 18:12:04
<!-- type 开放数据类型 open-gid 当 type="groupName" 时生效, 群id lang 当 type="user*" 时生效,以哪种语言展示 userInfo,有效值有:en, zh_CN, zh_TW --> <!--type开放数据类型 groupName 拉取群名称 userNickName 用户昵称 userAvatarUrl 用户头像 userGender 用户性别 userCity 用户所在城市 userProvince 用户所在省份 userCountry 用户所在国家 userLanguage 用户的语言 --> <view>用户昵称、性别:</view> <open-data type="userNickName" lang="zh_CN"></open-data> -- <open-data type="userGender" lang="zh_CN"></open-data> <view>用户头像:</view> <open-data type="userAvatarUrl"></open-data> <view>用户所在国家、省份、城市 :</view> <open-data type="userCountry" lang="zh_CN"></open-data> <open-data type="userProvince" lang="zh_CN"></open-data> <open-data type="userCity" lang="zh_CN"></open-data> <view>用户群:</view> <open-data type="groupName" open-g></open-data>