赞
踩
结构前
// 解构data对象重命名为res
const { data: res } = await this.$http.post("login", this.LoginForm);
if (res.meta.status !== 200) {
this.$message.error("登陆失败");
return;
} else {
this.$message.success("登陆成功");
// 存储token
window.sessionStorage.setItem("token", res.data.token);
this.$router.push("/Home");
}
结构后
将返回的数据 指定拿出某一项进行操作
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。