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

Sorry if my title is hard to understand. Let me explain.

To use this example of my structure:

Array
(
[2] => Array
    (
        [0] => stdClass Object
            (
                [category_id] => 2
                [category_name] => women
                [project_id] => 1
                [project_name] => Balloons
            )

    )

[1] => Array
    (
        [0] => stdClass Object
            (
                [category_id] => 1
                [category_name] => men
                [project_id] => 2
                [project_name] => Cars
            )

        [1] => stdClass Object
            (
                [category_id] => 1
                [category_name] => men
                [project_id] => 3
                [project_name] => Houses
            )

    )

Then once i have that, i send it out to be eval'd by javascript(which is successful). Console.log does in fact shows that's my eval'd json is in fact now an object.

Now, If i console.log(myArray[2]), it will show it as an array that contains another array. Which is also correct

BUT!.. if i try to do this:

for (item in myArray[2]) {
...
}

or this:

newVar = myArray[2]
for (item in newVar) {
...
}

"item" doesn't contain the array as it should. it contains a string equal the sub arrays' key. Which in this case is "0"

What am I missing here guys? :(

Thanks for the help!

share|improve this question
As an aside, your example structure is really hard to read. All you need to say is "an array of arrays" or "nested arrays" and it'll be clear. – Matt Ball Dec 23 '09 at 16:59

1 Answer

up vote 3 down vote accepted

You already said what the problem was: "item" doesn't contain the array... it contains a string equal the sub arrays' key. So, you just need to use that key:

var subarray;
for (var i in myArray) {
    subarray = myArray[i];
    for (var j in subarray) {
        ... // do stuff with subarray[j]
    }
}
share|improve this answer
1  
If you're using JavaScript libraries that might override Array/Object prototypes, you'll also want to check hasOwnProperty: developer.mozilla.org/En/… – Annie Dec 23 '09 at 16:59
Good point. Additionally, if you're developing for FF only, there is a way to iterate in the way you were trying to before - use forEach: developer.mozilla.org/En/Core_JavaScript_1.5_Reference/Objects/… or for each ... in : developer.mozilla.org/en/Core_JavaScript_1.5_Reference/… – Matt Ball Dec 23 '09 at 17:02
Thanks for the help! It works now. I still have using a single for loop but i'm accessing my values list so: myArray[i]['project_name'] – Jeff Dec 23 '09 at 17:14

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.