在json文件中搜索关键角度2+

时间:2018-01-25 15:15:10

标签: json angular search key mapping

在我的网站上,我想验证用户在输入3个字母代码或2个字母代码时所做的输入。它应该返回键的值。 因此,如果他键入“BTC”,它应该返回“比特币”并在输入旁边显示它。 我找到了这个例子,但对于我想要的东西似乎很复杂:https://github.com/ghiden/angucomplete-alt它是angularjs

      Search three lettercode coin: <input ng-model="query">
        
      

{

  "42": "42 Coin",

  "365": "365Coin",

  "404": "404Coin",

  "611": "SixEleven",

  "808": "808"
  
  }

1 个答案:

答案 0 :(得分:0)

最简单的方法是这样做: - 检查每种类型的表格输入

oninput="checkInput($event)"

然后你可以看到它是否与任何键匹配:

function outputData(value) {
    alert(value);
}

function checkInput(event) {
    // Check event.target.value with either if cases or a switch statement and 
    //then trigger the function that outputs the key value.
    if (event.target.value === 'BTC') {
        outputData('Bitcon');
    } else if (event.target.value === '....') {
        .....
    }
}