Home > Web Front-end > JS Tutorial > body text

Example of mutual conversion between json data and string_javascript skills

WBOY
Release: 2016-05-16 17:22:08
Original
1138 people have browsed it
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'}]
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!