1. 程式人生 > >js 數組轉json,json轉數組

js 數組轉json,json轉數組

數組 stringify json字符串 style js 數組 arr pan code spa

//數組轉json串
var arr = [1,2,3, { a : 1 } ];
JSON.stringify( arr );

//json字符串轉數組
var jsonStr = ‘[1,2,3,{"a":1}]‘;
JSON.parse( jsonStr );

js 數組轉json,json轉數組