字典值未定义(错误)

时间:2018-04-16 15:40:13

标签: javascript angular dictionary ionic-framework

我想使用选择字符串输入在字典中搜索正确的值,然后我将其用于公共API。

我的选择输入来自此功能,该功能通过选择启动,其中InpBox是选择。

 public dictionary =  {Soccer: "b134", Football: "c568"} ; 

    public optionsFn(): void {       
          this.correct = this.InpBox.toString();
          let test  = this.dictionary[this.correct]; // does not work 
          console.log(this.correct, test)
}

控制台始终返回:Football , undefined但它应该是Football , c568

0 个答案:

没有答案