如果您不想使用axios,您可以使用原生的fetch API来发送网络请求。下面是使用fetch进行GET请求获取用户信息的示例代码:
async getUserInfo() {
try {
const response = await fetch('/api.php/user/getInfo');
const data = await response.json();
this.userinfo = data;
this.is_check = data.is_check;
} catch (error) {
console.error(error);
}
}
在以上代码中,我们使用fetch
方法发送一个GET请求到/api.php/user/getInfo
接口,并使用response.json()
方法将响应数据解析为JSON格式。然后,我们将用户信息设置到this.userinfo
和this.is_check
中。
请注意,由于fetch返回的是一个Promise对象,我们使用await
关键字来等待Promise的解析结果。另外,与axios一样,实际中您需要根据您的后端API路径进行相应修改。。