微信小程序open-data使用
<template> <view class="content"> <view class="con"> <!-- 用户头像 --> <open-data type="userAvatarUrl" class="con-avatar"></open-data> </view> <view class="con"> <!-- 用户昵称 --> <open-data type="userNickName" class="con-userNickName" lang="zh_CN"></open-data> </view> <!-- 用户性别 --> <open-data type="userGender" lang="zh_CN"></open-data> <!-- 用户所在省份 --> <open-data type="userProvince" lang="zh_CN"></open-data> <!-- 用户所在城市 --> <open-data type="userCity" lang="zh_CN"></open-data> <view class=""> <button open-type="openSetting" bindopensetting="callback">打开设置页</button> </view> </view> </template>