如何在JavaScript中不使用for
循环的情况下搜索数组中对象的属性?
如果数组是一个简单的数组,我可以使用array.indexOf(value)
来获取索引,但是如果数组是一个对象数组呢?除了循环任何其他方式?
例如,ar = [{x,y},{p,q},{u,v}]
。如果搜索v
,则应将数组索引返回为2。
答案 0 :(得分:3)
在数组中搜索值通常需要sequential search,这需要您遍历每个项目,直到找到匹配项。
function search(ar, value) {
var i, j;
for (i = 0; i < ar.length; i++) {
for (j in ar[i]) {
if (ar[i][j] === value) return i;
}
}
}
search([{'x': 'y'}, {'p': 'q'}, {'u': 'v'}], 'v'); // returns 2;
答案 1 :(得分:0)
Searching for objects in JavaScript arrays
javascript:
/* quick fix naive short solution to be posted soon */
/* array of objects with primitive property values only and no wrinkles */
javascript:
alert(
JSON.stringify(
[{x:1,y:2},,,{p:"q"},{u:{},vx:[],x:{y:{},x:5}}]
) . match(/"x":/g)
)
和
javascript: /* Does the need to fortify this code imply JSON is stronger? */
alert( /* See wrinkles below */
[{x:1,y:2},,,{p:"q"},{u:{},vx:[],x:{y:{},x:5}}] . toSource() .
/*
match(/({|,)\s*x:/g) . join() . replace(/({|,)\s*x:/g,"x:")
finds `x:,x:,x:`
*/
replace(/(({|,)\s*)([^,{:]*):/g,'$1"$3":') . match(/"x":/g)
)
找到"x":,"x":,"x":
。
找到特定属性,已完成交易?
提示,提示(但必须适当减弱和截断巢式动物):
javascript:
alert(
JSON.stringify([{x:1,y:2},{p:"q"},{u:{},v:[],x:{y:{},x:5}}]) .
match(/"[^"]*":/g)
)
找到"x":,"y":,"p":,"u":,"v":,"x":,"y":,"x":
(所有属性 - 现在完成?)
更多(更多)脑应变疼痛将找到x:
值和数组位置索引(提示计数顶级,
)。
截肢和衰减提示(仅删除嵌套数组和对象,
,见皱纹):
javascript:debug=false;
animal=[
{x:1,y:2},,,{p:"q"},
[ {u:{},vx:[,,], x:{y:{xx:''},x:5} }, "hmmm comma x colon \" monster" ],
];
animal=animal.toSource().replace(/\[(.*)]/,"$1");
/* */ if(debug){
alert(animal);
animal=animal.replace(/\[([^[\]]*)\]/g,
function(a,b,c,d){alert([a,b,c,d].join("\n\n"));return a});
while(animal.search(/\{.*\}|\[.*\]/)>-1){
animal=animal.replace(/\{([^{}]*)\}|\[(.*)\]/g,
function(a,b,c,d){alert([a,"\n",b,"\n",c]);return b.replace(/,/g,";")});
alert(animal); }
/* */ }
/* the while loops on nesting depth not top array length */
while(animal.search(/\{.*\}|\[.*\]/)>-1)
animal=animal.replace(/\{([^{}]*)\}|\[(.*)\]/g, /* implicit g loop */
function(a,b,c,d){return (b+c).replace(/,/g," ")}); /* ditto */
alert(animal); /* as opposed to a non-lert animal? */
皱纹:
.toSource()
更强(但......见上文)并处理比JSON
更多的情况
参考:Implementing Mozilla's toSource() method in Internet Explorer ,
的。 。 。如在。 。 。 [",,or",,{p:"1,2,3,"}]
{x:...}
或{"x":...}
。 。 。如在。 。 。 ['{"x":...}'," and ","{x:...}",,]
JSON
或toSource
)