我想使用选择字符串输入在字典中搜索正确的值,然后我将其用于公共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
。