JS JSON和字符串相互轉換

json轉爲字符串 var stu = { 「name」:」lili」, 「age」:18, 「sex」:」male」 } console.log(stu); 方法一 var str = JSON.stringify(stu); console.log(str); 方法二 /*var str = stu.toJSONString(); console.log(str);*/ 字符串轉爲json v
相關文章
相關標籤/搜索