js 获取 php 数组数据

php 的数据要先转换成 json,再执行 url 编码传递给 js 。如果在一个页面中做传递的话,可以随便写一个属性,在 js 中获取这个属性即可
对应的在 js 中,要先进行 url 解码

  • 代码
 1,
        'name' => 1,
    ],
    [
        'id' => 2,
        'name' => 2,
    ],
    [
        'id' => 3,
        'name' => 3,
    ],
];

$js_value = urlencode(json_encode($arr));
?>




你可能感兴趣的:(js 获取 php 数组数据)