0

私のJson出力が生成されます。

[ 
  {
    "a1_id":"7847TK10", 
    "output2":"7847TK10", 
    "output4":"something", 
    "output5":"3stars.gif", 
    "output9": "269000", 
...

などなど

Google ビジュアライゼーション API は、output9 要素の数値形式を要求します。例: "output9": 269000の代わりに"output9": "269000". この要素でこれを達成するにはどうすればよいですか?

私の json.php は、次のような json 出力を生成します。

 ?>
 {
 "total": <?php echo $total ?>,
 "success": true,
 "rows": [

    // Iterate over the rows
    $nextRow= $result->nextRow();
    $r      = 1;
    $info   = array();

    while ( $nextRow ) {


        $nextColumn = $result->nextColumn();

        // Has this column been printed already
        if ( $unique )
        {
            $d = $result->getDataForField($unique);
            if ( array_key_exists($d, $already) )
            {
                $nextRow= $result->nextRow();
                continue;
            }
            $already[$d] = true;
        }

        echo '{';
        // Iterate over the columns in each row

        while ( $nextColumn )
        {

            // Get the variable
            $variable       = $result->getOutputVariable();
            $name           = $variable->getName(true);
            $data           = $result->getDataForField();

            if ( !isset($info[$name]) ) {
                $info[$name]['translate']   = $variable->shouldTranslate();
                $info[$name]['type']        = $variable->getDataType();
                $info[$name]['linkable']    = $variable->isLinkable();
            }

            // Translate the data if requested
            if ( $info[$name]['translate'] ) {
                $data   = LQMTemplate::_($data);
            }

            $data   = $variable->format($data, false);

            $type   = $info[$name]['type'];
            if ( ($type == 'bool') or ($type == 'boolean') )
            {
                $data = $data ? '1' : '0';
                echo "'$name':$data";
            } elseif ( $encode ) {
                // Can we use json_encode ?
                // str_replace because some versions of PHP have a bug that will over escape forward slashes
                echo "\"$name\":".str_replace('\\/', '/', json_encode($data));
            } else {
                $data   = LQMUtility::jsonEscape($data, '"');
                //echo "'$name':\"$data\"";
                echo "\"$name\":\"$data\"";



            }

            // Conditionally print the next column
            $nextColumn = $result->nextColumn();
            if ( $nextColumn ) echo ",\n ";

        }


        // Conditionally print the next column
        $nextRow = $result->nextRow();

        echo $nextRow ? "},\n" : "}\n";
        $r++;

    }

unset($result);
echo ']}';
}
}
4

1 に答える 1

1

これは、JSON の生成方法によって異なります。

たとえば、Ruby バックエンドを使用している場合は、次のように呼び出すことができます。

"output9" => output9.to_i

parseInt()文字列を整数に変換するためのさまざまな言語 (Java や Javascript など) には、さまざまなヘルパー メソッドがあります。

編集:

JSON が PHP によって生成されている場合は、文字列を整数にキャストします。

$json['output9'] = int($output9_value);

これで引用符が取り除かれます。

于 2012-06-19T15:46:37.680 に答える