若依 getUser() { this.$http.get('getInfo').then((res) => { this.user = res.data this.username = res.data.username this.roleGroup = res.roleGroup console.log(res.data) }) }
时间: 2023-07-15 21:10:31 浏览: 98
Node.js-yamlful一个基于YAML的HTTP客户端代码生成器
这是一个使用 Vue.js 框架中的 `$http` 库发起 GET 请求获取用户信息的方法。
1. 首先,使用 `this.$http.get` 发起 GET 请求,其中 `'getInfo'` 是请求的 URL 地址。
2. 当请求成功后,使用箭头函数 `(res) => {...}` 处理响应结果 `res`。
3. 将响应结果中的用户信息 `res.data` 赋值给本地的 `user` 变量。
4. 将用户的用户名 `res.data.username` 赋值给 `username` 变量。
5. 将用户的角色组 `res.roleGroup` 赋值给 `roleGroup` 变量。
6. 最后打印出响应结果 `res.data`。
阅读全文