如果想要在Vue.js中获取用户信息,可以调用接口url: '/user/getInfo'来获取。一种常见的方法是使用Vue.js中的axios库,使用以下代码实现:
import axios from 'axios';
export default {
data() {
return {
userInfo: null,
};
},
mounted() {
axios.get('/user/getInfo')
.then(response => {
this.userInfo = response.data;
})
.catch(error => {
console.log(error);
});
},
};
上述代码中,axios.get()
方法用于发送一个GET请求url:'/user/getInfo'。使用.then()
方法处理响应,将获取到的用户信息存储在userInfo
属性中。如果发生错误,可以使用.catch()
方法捕获错误并进行处理。
需要注意的是,在实际开发过程中,应该将接口的URL、请求方法、请求参数和响应内容等细节与后端API协商好,并根据具体情况进行调整。此外,为了保证代码的可靠性和安全性,请勿在前端存储敏感信息。