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