若依获取当前用户信息

/ Java / 0 条评论 / 466浏览
import { getUserProfile } from "@/api/system/user";


 getUserProfile().then(response => {
        this.user = response.data;
        this.roleGroup = response.roleGroup;
        this.postGroup = response.postGroup;
       });

-------------------------------------分割线-------------------------------------------

在user.js中,获取当前用户的信息需要,查询用户个人信息来讲

// 查询用户个人信息
export function getUserProfile() {
  return request({
    url: '/system/user/profile',
    method: 'get'
  })
}

在得到后得response中回传用户得个人信息