如何读取对象的属性值

时间:2019-05-15 06:32:43

标签: typescript2.0

如何在打字稿(.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;
    }
  }  

0 个答案:

没有答案