-4

我想通过我的代码的另一个值从 JSON 对象中获取值:

var ar=[{"one","a"},{"two","b"},{"three","c"},{"four","d"}];

我想在不使用循环的情况下做这样的事情:

var val=ar["c"];   // i want result=three
4

4 回答 4

3

简单的回答:不可能。如果您只有发布的数据结构,则循环是检索的唯一方法。

所以最好的解决方案是编写一个循环遍历对象并返回值的函数。这样您就可以在需要时轻松访问它,而无需每次都编写循环。但是,出于显而易见的原因,它是 O(n)。

于 2013-09-06T21:29:58.977 回答
1

假设上面有错别字,并且您打算写:

var ar=[ ["one","a"], ["two","b"] , ["three","c"], ["four","d"] ];

如果您可以使用 IE 9 及更高版本或其他现代浏览器,array.filter()则可以:

function findMatch( ar, key ) {
  var matches = ar.filter(
    function( el ) {
      return (el[1] == key);  // match against the second element of each member
    }
  );

  if (matches.length > 0)
    return( matches[0][0] );  // return the first element of the first match
  else 
    return null;
}

var val = findMatch( ar, "c" );

对于早期的浏览器,filter这里包含一个 DIY 版本:https ://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/filter

于 2013-09-06T21:35:54.043 回答
0

假设您实际上有一个数组数组。而你并没有改变它。您可以将此数组转换为对象。

var ar=[ ["one","a"], ["two","b"] , ["three","c"], ["four","d"] ];

var cache = (function(arr){
    var cache = {};
    arr.forEach(function(item){cache[item[1]] = item[0]});
    return cache;
}(ar));
cache["c"]; //"three"
于 2013-09-06T21:43:57.803 回答
0

没有循环绝对是可能的,只是不是最好的方法,

假设您的数组按该顺序排列,对象进程为 abc.. 并且键为小写 a 到 z

var ar=[{"one" : "a"},{"two" : "b"},{"three" : "c"},{"four" : "d"}];

var key = ("c".charCodeAt(0) - 97);

var val = Object.keys(ar[key])[0];

**注意,根据处理此代码的 JS 引擎,您可能会或可能不会得到答案,因为对象中的第一项与人们想象的不同。我的意思是,一个对象不是有序的

编辑:我忘了修复你的对象,这里是 jsfiddle http://jsfiddle.net/rJ7j9/

于 2013-09-06T21:50:39.713 回答