Json kullanarak diziler geçen?

1 Cevap php

Ben bu php kodu var

   $ids = array(1,2,3);
   $names = array("cat","elephant","cow"); 
   $originalSettings = array ('ids'=>$ids,'names'=>$names);
   $jsonSettings = json_encode($originalSettings);
   echo $jsonSettings;

ve bu jQuery kodudur

$.post("ajax.php", {},
function(data){
data.ids.each(function(i) {
alert(data.names[i]);
}
//is it possible to receive the arrays and navigate them   
}, "json");

Nasıl json kullanarak ve javascript onları alabilirsiniz diziler geçebilir?

Teşekkürler

1 Cevap

Deneyin:

function(data) {
    $.each(data.array1, function(i) {
        alert(data.array2[i]);
    });
}