du21064 2019-01-28 17:51
浏览 81
已采纳

将PHP数组插入带有键值的JavaScript变量中

First, sorry if my problem is duplicated but I really try a lot of things but with no result. Second, my problem is that after using "json_encode($php_array)" and insert it into a js variable the output is "[object Object]" and it is not the $php_array.

Using key with the array (Bad result)

<script type="text/javascript">
// Some functions here
<?php
    $php_array = array('name'=>'joe','10','cat');
    $js_array = json_encode($php_array);
    echo "var javascript_array = ". $js_array . ";
";
?>
alert(javascript_array); // Output is: [object Object]
</script

Without using key (Good result)

<script type="text/javascript">
// Some functions here
<?php
    $php_array = array('joe','10','cat');
    $js_array = json_encode($php_array);
    echo "var javascript_array = ". $js_array . ";
";
?>
alert(javascript_array); // Output is: abc,def,ghi
</script

I expect the output of [{"name":"joe","cat"}], but the output is [object Object]

  • 写回答

1条回答 默认 最新

  • doudi7570 2019-01-28 17:54
    关注

    This is because the javascript alert() function isn't very clever - it knows how to output arrays nicely, but with objects it just gives up and says "it's an object!".

    You can make a nice pretty respresentation of the object like this:

    const prettyOutput = JSON.stringify(javascript_array, null, 4); //use indentation of 4 spaces
    alert(prettyOutput);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 关于#stm32#的问题:需要指导自动酸碱滴定仪的原理图程序代码及仿真
  • ¥20 设计一款异域新娘的视频相亲软件需要哪些技术支持
  • ¥15 stata安慰剂检验作图但是真实值不出现在图上
  • ¥15 c程序不知道为什么得不到结果
  • ¥40 复杂的限制性的商函数处理
  • ¥15 程序不包含适用于入口点的静态Main方法
  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因