无法从PHP json_encode解析JS中的JSON对象

时间:2012-05-27 21:39:25

标签: php javascript json parameters

我在PHP中有一个数组,我用_json_encode(..)_打包到JSON对象。然后我将它作为参数发送给JS函数。当我想用 eval(..)解析Javascript中的对象时,没有任何事情发生(我认为幕后有错误)。可能有什么不对? 代码:

<script type="text/javascript">
    function testFun(inArr) {
      var obj=eval('('+inArr+')');
      alert(obj.m); //alert(obj) also doesnt work
    }
</script>  


//PHP
$spola_array = array('m' => 1, 'z' => 2);
$json_obj=json_encode($spola_array);
echo '<script type="text/javascript">testFun('.$json_obj.');</script>';

1 个答案:

答案 0 :(得分:5)

它已被解析,因为您将其输出为对象文字而不是字符串。这看起来像是:

<script type="text/javascript">testFun({m: 1, z: 2});</script>

所以在你的功能中,它只是:

alert(inArr.m) //1

如果它是一个字符串,你只需要解析它:

<script type="text/javascript">testFun('{m: 1, z: 2}');</script>