Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a json string which is resulted by an ajax call which looks like this

[ { 
"name":"sourabh", 
"userid":"soruabhbajaj", 
"id":"11", 
"has_profile_image":"0" }, 
{
"name":"sourabh", 
"userid":"sourabhbajaj", 
"id":"12", 
"has_profile_image":"0" 
}]

The page on my web app uses "id" value as the identification of an object. So I want to display the name of the user where ever users' name is required. What is the fastest way of getting the right user object to output the name or other values of user using the id value. Thanks in advance.

share|improve this question
3  
a for loop will suffice. – zzzzBov Sep 23 '11 at 14:39
possible duplicate of Searching for an Object inside the JSON – user113716 Sep 23 '11 at 14:42
2  
Fishy... the question and every answer has received a downvote. – Greg Sep 23 '11 at 14:53
Please note that this question is about searching inside an array, while "Searching for an Object inside the JSON" is about searching inside an object. – Greg Sep 23 '11 at 14:58
I updated my answer to create a lookup table. – Greg Sep 23 '11 at 15:12

4 Answers

up vote 1 down vote accepted

Ok... this answer provides for a lot of overhead at the start, but then makes it faster to reference by id later. It basically makes an array that has each item at the same index of its id. Like I said, a lot of overhead at first but little for later processing

var data = [{"name":"sourabh", 
"userid":"soruabhbajaj", 
"id":"11", 
"has_profile_image":"0" }, 
{"name":"sourabh", 
"userid":"sourabhbajaj", 
"id":"12", 
"has_profile_image":"0" }, 
{"name":"sourabh", 
"userid":"sourabhbajaj", 
"id":"27", 
"has_profile_image":"0" }, 
{"name":"sourabh", 
"userid":"sourabhbajaj", 
"id":"3", 
"has_profile_image":"0" }, 
{"name":"myname", 
"userid":"myuserid", 
"id":"5", 
"has_profile_image":"0" }, 
{"name":"sourabh", 
"userid":"sourabhbajaj", 
"id":"2", 
"has_profile_image":"0" }]

arr = [];

data.sort(function(a,b){return Number(a.id) - Number(b.id);})

var k = 0;
var offset = Number(data[0].id);
for(var i = offset; i <= Number(data[data.length - 1].id);i++)
  if(Number(data[k].id) === i)
    arr.push(data[k++]);
  else
    arr.push({})

//now you can reference like so:
alert(arr[5 - offset].name) // alerts "myname"
share|improve this answer
Yeah, This can be the answer i was waiting for. I think I am satisfied with your answer. Thanks dude, A +1 + acceptance.. :) – Sourabh Sep 23 '11 at 15:05
Be cautious, depending on the range of the user ids this method could create an enormous array and a huge number of empty objects. For example, if user ids start at 5000, the array will be at least 5000 elements large and at least 5000 objects will be created. – Greg Sep 23 '11 at 15:10
@Greg good point. I've updated my answer to help that a little at least. – Joseph Marikle Sep 23 '11 at 15:22

Make the result from ajax call like this:

{ "11": { 
"name":"sourabh", 
"userid":"soruabhbajaj", 
"id":"11", 
"has_profile_image":"0" }, 
"12": {
"name":"sourabh", 
"userid":"sourabhbajaj", 
"id":"12", 
"has_profile_image":"0" 
}}

this way you can use it from javascript like this:

userName = jsonResponse[id].name
share|improve this answer
I was thinking about this method but this increases overhead on my controller of formatting the data in this format. – Sourabh Sep 23 '11 at 14:45
var data = [{"name":"sourabh", 
"userid":"soruabhbajaj", 
"id":"11", 
"has_profile_image":"0" }, 
{"name":"sourabh", 
"userid":"sourabhbajaj", 
"id":"12", 
"has_profile_image":"0" }]

for(var i in data)
  if(data[i]["id"] == 11)
    alert(data[i].name);

It's very simple :)

share|improve this answer
Its simple but using a loop will slow down my app. I am looking for a more efficient way of doing this. – Sourabh Sep 23 '11 at 14:46
@Sourabh are the id's contiguous (1,2,3,4...12) without any breaks in between? (and are they in numerical order) – Joseph Marikle Sep 23 '11 at 14:48
no. They can be random. like this (12,11,17,56). – Sourabh Sep 23 '11 at 14:50

Either search the array each time

function getUser(users, id) {
  var user = null;
  $.each(users, function() {
    if (this.id === id) {
      user = this;
      return false; // break out of loop
    }
  });
  return user
}

or create a reusable lookup table (assumes unique user ids):

function toLookup(users) {
  var lookup = {};
  $.each(users, function() {
    lookup[this.id] = this;
  });
  return lookup;
}

function getUser(lookup, id) {
  return lookup[id] || null;
}
share|improve this answer
I had a couple bugs in the first version - fixed now. – Greg Sep 23 '11 at 14:48
@Downvoter - why the downvote? – Greg Sep 23 '11 at 14:52
1  
I don't find anything worth downvoting. Who the hell down voted??? – Sourabh Sep 23 '11 at 14:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.