Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a problem with the returned array from ajax call.

the array is encrypted using json. it is as below

while ($found_course = mysql_fetch_assoc($sql)) {

    $info[] = array(
        'code' => $found_course['course_code'],
        'name' => $found_course['course_name']   );

}
echo json_encode($info); //this is returned to javascript

then the problem is that I am unable to use the above array returned in javascript. I tried using the $.each method but to no avail. the eval() also do not work as it give output as [object object]. Can someone please help me with this.

All I want is to be able to acces the code and the name of the course saperately

Thanks.

share|improve this question
Can you also post your javascript? – Mathieu Imbert Mar 26 '12 at 13:05
what is the structure of your JSON? how it gets to javascript is not really relevant. – jbabey Mar 26 '12 at 13:05
1  
nit-picky: it's json-encoded, not encrypted. – VolkerK Mar 26 '12 at 13:07

3 Answers

Just loop through it with for()

for (var c in myAjaxArray){
    myAjaxArray[c].code; // contains the code
    myAjaxArray[c].name // contains the name
}

Make sure you set the dataType in the jQuery ajax call to "JSON" to make sure you have a json Object. Or use the $.getJSON() function.

share|improve this answer
2  
i would suggest using var c instead of c to avoid creating a global. – jbabey Mar 26 '12 at 13:07
@jbabey thanks good suggestion – Rene Pot Mar 26 '12 at 13:11
thanks topener it works using your method – user1293053 Mar 26 '12 at 13:20
no problem @user1293053. Could you please accept it as best? – Rene Pot Mar 26 '12 at 14:00
<script>
var data = <?= json_encode($info); ?>;
for (var i = 0; i < data.length; i++) {
  var item = data[i];
  alert(item["code"] + " / " + item["name"]);
}
<script>
share|improve this answer
This is the structure of the javascript – user1293053 Mar 26 '12 at 13:11

This should get you the data you need. Not sure how you tried using $.each but it should be in your success function on your ajax call. Also make sure the datatype is set to json.

success: function(data){
  $(data).each(function(idx,val){
     alert(val.code + " " + val.name);
  })
}
share|improve this answer

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.