uniapp微信小程序投票系统实战 (SpringBoot2+vue3.2+element plus ) -个人中心页面搭建实现

锋哥原创的uniapp微信小程序投票系统实战:

uniapp微信小程序投票系统实战课程 (SpringBoot2+vue3.2+element plus ) ( 火爆连载更新中... )_哔哩哔哩_bilibiliuniapp微信小程序投票系统实战课程 (SpringBoot2+vue3.2+element plus ) ( 火爆连载更新中... )共计21条视频,包括:uniapp微信小程序投票系统实战课程 (SpringBoot2+vue3.2+element plus ) ( 火爆连载更新中... )、第2讲 投票项目后端架构搭建、第3讲 小程序端 TabBar搭建等,UP主更多精彩视频,请关注UP账号。icon-default.png?t=N7T8https://www.bilibili.com/video/BV1ea4y137xf/个人中心页面搭建实现

uniapp微信小程序投票系统实战 (SpringBoot2+vue3.2+element plus ) -个人中心页面搭建实现_第1张图片





最新获取用户头像和昵称方式:

头像昵称填写 | 微信开放文档

WebAppConfigurer 加下 addResourceHandlers 虚拟路径映射下头像

@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
    registry.addResourceHandler("/image/userAvatar/**").addResourceLocations("file:D:\\uniapp\\userImgs\\");
}
/**
 * 用户当前用户信息
 * @return
 */
@RequestMapping("/getUserInfo")
public R getUserInfo(@RequestHeader String token){
    System.out.println("token="+token);
    Claims claims = JwtUtils.validateJWT(token).getClaims();
    System.out.println("openid="+claims.getId());
    WxUserInfo currentUser = wxUserInfoService.getOne(new QueryWrapper().eq("openid", claims.getId()));
    Map map=new HashMap<>();
    map.put("currentUser",currentUser);
    return R.ok(map);
}

前端获取用户信息:





uniapp微信小程序投票系统实战 (SpringBoot2+vue3.2+element plus ) -个人中心页面搭建实现_第2张图片

你可能感兴趣的:(uni-app,uni-app,小程序投票,微信小程序投票,投票系统,微信小程序)