我有
$age = implode(',', $wage); // which is object return: [1,4],[7,11],[15,11]
$ww = json_encode($age);
然后我在这里检索它
var age = JSON.parse(<?php echo json_encode($ww); ?>);
所以如果我做
alert(typeof(<?php echo $age; ?>)) // object
alert(typeof(age)) //string
在我的情况下 JSON.parse 重新调整为字符串。
我怎样才能让 json 作为对象返回?
编辑:
var age = JSON.parse(<?php echo $ww; ?>); // didnt work , its something syntax error