Home  >  Article  >  Web Front-end  >  Example of mutual conversion between json data and string_javascript skills

Example of mutual conversion between json data and string_javascript skills

WBOY
WBOYOriginal
2016-05-16 17:22:081139browse
Convert json to string[Need to quote json2.js file]:
Copy code The code is as follows:

var arr=[{id:'id',name:'Spring'},{id:'id2',name:'Jane'}];
var str=JSON.stringify( arr);

Result: "[{id:'id',name:'Spring'},{id:'id2',name:'Jane'}]"

string converted to json:
Copy code The code is as follows:

var str="[{id:'id',name:'Spring'},{id:'id2',name:'Jane'}]";
var json=$.parseJSON(str);

Result: [{id:'id',name:'Spring'},{id:'id2',name:'Jane'}]
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn