English 中文(简体)
从物体清单中获取数据的最有效方式?
原标题:Most efficient way to obtain data from a list of objects?
  • 时间:2012-04-13 22:28:43
  •  标签:
  • javascript

我有这样的物体清单(从PHP到Pjson的编码):

{"10":{"10":["4","7","2","2","0","32"],"11":["5","22","1","1","0","0"]}}

translated:

{"X":{"Y":["unique_id","data","data","data","data","data"],"Y":["unique_id","data","data","data","data","data"]

但是,试图找到一种途径,通过寻找独一无二的种子来获得X:Y, 说是4。

这样做的最有效方式是什么?

最佳回答

If they re unique ID s, create a separate lookup table.

var id_lookup = {};

for(var x in data)
    for(var y in data[x])
        id_lookup[data[x][y][0]] = [x,y]

var coords = id_lookup[4];

alert(coords);  // [10,10]

alert(data[coords[0]][coords[1]]); // ["4","7","2","2","0","32"]

http://jsfiddle.net/LXE3B/“rel=“nofollow”

问题回答

暂无回答




相关问题
selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

How to fire event handlers on the link using javascript

I would like to click a link in my page using javascript. I would like to Fire event handlers on the link without navigating. How can this be done? This has to work both in firefox and Internet ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Clipboard access using Javascript - sans Flash?

Is there a reliable way to access the client machine s clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...

javascript debugging question

I have a large javascript which I didn t write but I need to use it and I m slowely going trough it trying to figure out what does it do and how, I m using alert to print out what it does but now I ...

Parsing date like twitter

I ve made a little forum and I want parse the date on newest posts like twitter, you know "posted 40 minutes ago ","posted 1 hour ago"... What s the best way ? Thanx.

热门标签