1.JSON.stringify(): js object->json
<script> //Number console.log(JSON.stringify(3.14)); //字符串 console.log(JSON.stringify('php.cn')); //布尔型 console.log(JSON.stringify(true)); console.log(JSON.stringify(null)); //对象 console.log(JSON.stringify({x:'a',y:'b'})); //数组 console.log(JSON.stringify([1,2,3])); </script>
2.JSON.parse(): json->js object
<script> console.log(JSON.parse( `{ "a":1, "b":2, "c":3 }` )); console.log(typeof JSON.parse( `{ "a":1, "b":2, "c":3 }`)); let jsObj=JSON.parse(`{"a":1,"b":2,"c":3}`); //判断是否为Object console.log(jsObj instanceof Object); console.log(typeof jsObj); //promise fetch </script>
권장 사항: "2021 js 면접 질문과 답변(대요약)"
위 내용은 Javascript에서 JS 객체와 JSON 간의 변환의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!