JSON将对象解析为javascript函数:syntaxerror

时间:2013-07-30 19:22:59

标签: php javascript ajax json

我正在解析从我的数据库中通过ajax查询的json脚本。我想在我的javascript函数“addComp()”中使用我查询的(以json格式),为地图上的每个建筑添加几何组件。这是jQuery / ajax代码:

$.ajax({ 

        type: "GET",
        url: "ajax_processor.php",
        dataType : "json",

        success:function(data){ 
        console.log(data); //here I got what i want

        var geometryElement = $.parseJSON(data);

                for (var i=0; i<geometryElement.length; i++) {
                      addComp(  geometryElement[i].bldg, 
                                    geometryElement[i].iZ, 
                                    geometryElement[i].iType,
                                    geometryElement[i].x0,
                                    geometryElement[i].y0,
                                    geometryElement[i].p, ...); //parameters p1, p2, p3, p4, p5
                 }
        }
});

我通过PHP查询的JSON脚本是:

{"ID_geometryElement":"1","bldg":"1","iZ":"1","iType":"1","x0":"23","y0":"5","p1":"5","p2":"2","p3":"3","p4":"0","p5":"0"},
{"ID_geometryElement":"2","bldg":"1","iZ":"1","iType":"1","x0":"24","y0":"7","p1":"2.5","p2":"4","p3":"3.5","p4":"0","p5":"0"},
 ...

但是这并没有在地图上显示任何内容,而且我收到了以下错误:

 Uncaught SyntaxError: Unexpected token o          jquery.js:550
 jQuery.extend.parseJSON                           jquery.js:550    
 $.ajax.success                                    index_LF.php:3725
 fire                                              jquery.js:3074
 self.fireWith                                     jquery.js:3186
 done                                              jquery.js:8253
 callback                                          jquery.js:8796
 handleStateChange                                 firebug-lite.js:18917 

有谁知道它来自哪里以及如何解决它?

编辑:在PHP方面,我得到了:

    <?php

    $host = 'localhost';
    $databaseName = 'localdb';
    $tableName = 'building_geometry';
    $user = 'admin';
    $password = 'password';


    $connexion = mysql_connect($host,$user,$password);
    $dbs = mysql_select_db($databaseName, $connexion);

    $sql = mysql_query('SELECT * from building_geometry');

    $rows = array();
    while($r = mysql_fetch_assoc($sql)) {
        $rows[] = $r;
    }

    echo json_encode($rows);

    ?>

但问题不在于php,我解析了json中已经存在的两倍(dataType是json)。

1 个答案:

答案 0 :(得分:2)

这不是有效的JSON。它看起来像一个数组文字,但它缺少外部方括号。

即,

{"foo": 0, ... },
{"bar": 1, ... },

无效,但如果是

则有效
[{"foo": 0, ... },
{"bar": 1, ... }]

无论如何,如果你告诉jQuery数据类型是JSON,并且它真的 JSON,那么你不必解析它。 “data”参数将是已解析的对象,而不是未解析的字符串。