我正在尝试获取后端响应,并且如果res.message
等于Login success
,则显示消息showMessage = true
res是来自后端的响应。当我们尝试获取对象消息时,它将显示错误。我所缺少的。
return this.http.post('http://localhost:5000/auth/logins?',jsondata)
.subscribe(
res =>{
if(res.message === "Login success"){
showMessage = true;
}
},