1.JSON.stringify():js物件->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物件
<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中文網其他相關文章!