我有一个像这样的json:
{
"typeA": { "option1": "one", "option2": "two" } ,
"typeB": { "option1": "one", "option2": "two" } ,
"typeC": { "option1": "one", " option2": "two" }
}
我使用http://easyautocomplete.com/。
我的问题是:如何在getValue中为匹配选择键' TypeA,或TypeB或Type C'
getValue: function(element) {
return Object.keys(element);
}