我正在从 PHP 中将一些数据保存在 assoc 数组中。有一些 Id 放在一个数组中,然后是 json_encoded:
$ids = array(id => id, id2 => id2);
json_encode($ids);
store in the cookie ...
我正在为 jQuery 使用这个插件:http: //plugins.jquery.com/cookie/
这是字符串,存储在 cookie 中的值为:“xxx”
%7B%2222504454%22%3A22504454%7D
path: "/"
domain: ".domain.com"
当我使用这个时:
var test = $.cookie( 'xxx');
我只收到Object
退货。
如何读取这个数组?