Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to convert json data into arrays in javascript

2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

Editor to share with you how to convert json data into arrays in javascript. I hope you will get something after reading this article. Let's discuss it together.

In javascript, you can use the "JSON.parse ()" method to convert json data into an array, which converts a JSON string to a JavaScript value or object, with the syntax "JSON.parse (json data)".

The operating environment of this tutorial: windows7 system, javascript1.8.5 version, Dell G3 computer.

JSON is the format used to store and transfer data. JSON is usually used to transfer data from the server to a web page.

The JSON format is syntactically the same as the code for creating JavaScript objects. Because they are similar, JavaScript programs can easily convert JSON data into JavaScript objects.

Convert javascript json data to an array

/ / json string conversion array var jsonStr ='[1Jing 2jue 3, {"a": 1}]'; var jsarr=JSON.parse (jsonStr); console.log (jsarr); console.log (jsarr [0])

Description:

The JSON.parse () method is used to convert a JSON string to a JavaScript value or object. Syntax format:

JSON.parse (text [, reviver])

Parameter description:

Text: required, a valid JSON string.

Reviver: optionally, a function that converts the result, which will be called for each member of the object.

After reading this article, I believe you have some understanding of "how to convert json data into arrays in javascript". If you want to know more about it, you are welcome to follow the industry information channel. Thank you for reading!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report