如何在打字稿(.ts文件)中获取对象的值,而不是在HTML页面上显示值。
我已经将值存储在名为 SelectedUser 的对象中,但是我想读取该对象的属性值 EmailId 。
ERROR TypeError:无法读取未定义的属性'EmailId'
checkusernameandpassword(uname: string, pwd: string) {
if (uname == this.SelectedUser.EmailId && pwd == this.SelectedUser.Password) {
localStorage.setItem('username', "admin");
return true;
}
else {
return false;
}
}
checkusernameandpassword(uname: string, pwd: string) {
if (uname == this.SelectedUser.EmailId && pwd == this.SelectedUser.Password) {
localStorage.setItem('username', "admin");
return true;
}
else {
return false;
}
}