each statt for in?
JSON-Übergabe-Problem an PHP
Einklappen
X
-
bei mir lief es am freitag noch nit richtig, bin nur nit dazu gekommen noch zu schreiben, so dann mach ich jetzt mal nen überblick, wie ich das mache:
hier der php-Teil:
PHP-Code:$arr_ausgabe = array();
if(is_array($test))
{
foreach($test as $key => $value)
{
if(!empty($value))
{
$arr_ausgabe[$key] = $value;
}
}
}
$result = array("answer" => $arr_ausgabe);
$myjson = new SERVICES_JSON();
header('X-JSON: '.trim($myjson->encode($result)));
Code:function theFunc( transport, json ) { var response = $( 'response' ); json = $H( json['answer'] ); json.each( function( pair ) { response.insert( '<br />'+pair.value ); } ); }
Kommentar
Kommentar