1. 程式人生 > >js 數組與json的轉換

js 數組與json的轉換

ons nbsp json字符串 pre json var 轉換 style div

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

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

js 數組與json的轉換