반응형
Notice
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 자바스크립트
- 딥러닝
- 알고리즘
- 소프트웨어
- 데이터분석
- 네트워크
- 프로그래밍언어
- 머신러닝
- 프로그래밍
- 데이터베이스
- 인공지능
- 2
- 소프트웨어공학
- 파이썬
- 컴퓨터공학
- I'm Sorry
- Yes
- 네트워크보안
- 보안
- 코딩
- 빅데이터
- 컴퓨터비전
- 데이터과학
- 컴퓨터과학
- 클라우드컴퓨팅
- 웹개발
- 데이터구조
- 사이버보안
- 자료구조
- 버전관리
Archives
- Today
- Total
스택큐힙리스트
자바스크립트에서 JSON 구문 분석하기? [중복] 본문
반응형
Javascript에서 JSON 문자열을 쉽게 파싱하고 싶습니다. 응답은 다음과 같습니다.
var response = '{result:true,count:1}';
이것으로부터 값을 어떻게 얻을 수 있을까요? 결과
와 카운트
답변 1
만약 당신이 IE 7 (2006), IE 6 (2001), Firefox 3 (2008), Safari 3.x (2009)와 같은 고대 브라우저를 위해 프로그래밍을 하고 있다면 JSON.parse()
를 사용할 수 없을 것입니다. 또는 표준 API를 포함하지 않은 특이한 JavaScript 환경에 있을 수도 있습니다. 이러한 경우에는 json2.js를 사용할 수 있습니다. 이는 JSON의 발명가인 Douglas Crockford가 작성한 JSON의 참조 구현체입니다. 해당 라이브러리는 JSON.parse()
의 구현을 제공할 것입니다.
매우 큰 JSON 파일을 처리할 때 JSON.parse()
는 동기적인 특성과 설계 때문에 막힐 수 있습니다. 이를 해결하기 위해, JSON 웹 사이트는 Oboe.js와 clarinet과 같은 서드 파티 라이브러리를 추천하며, 이는 스트리밍 JSON 파싱을 제공합니다.
jQuery는 한 번 $.parseJSON()
기능을 가졌지만, jQuery 3.0에서는 사용되지 않았습니다. 어쨌든, 장기간에 걸쳐, 이는 단순히 JSON.parse()
을 감싸는 래퍼에 불과했습니다.
답변 2
To parse JSON in JavaScript, you can use the built-in JSON.parse() method. This method takes a JSON string as its argument and returns a JavaScript object. This allows you to easily work with data that is in JSON format.JSON, or JavaScript Object Notation, is a lightweight data interchange format that is easy for humans to read and write and easy for machines to parse and generate. JSON is commonly used for transmitting data between a server and a web application.
When working with JSON in JavaScript, you may receive a JSON string from an API or from another source. To parse this JSON string and convert it into a JavaScript object, you can use the JSON.parse() method. For example, if you have a JSON string stored in a variable called jsonString, you can parse it like this:
```javascript
const jsonString = '{name: John, age: 30}';
const data = JSON.parse(jsonString);
console.log(data.name); // Output: John
console.log(data.age); // Output: 30
```
In this example, the JSON.parse() method is used to convert the JSON string into a JavaScript object. The properties of the object can then be accessed using dot notation.
In conclusion, parsing JSON in JavaScript is a common task when working with data in web development. By using the JSON.parse() method, you can easily convert JSON strings into JavaScript objects and manipulate the data as needed. This can help streamline your development process and make working with JSON data more efficient.
반응형
Comments