이 두 가지 파싱 방법을 사용할 때 혼란 스럽습니다.
json_encoded 데이터를 에코하고 ajax를 통해 다시 검색 한 후 JSON.stringify 및 JSON.parse를 사용해야하는 시점에 대해 종종 혼란스러워합니다 .
구문 분석 할 때 console.log[object,object]
에, 문자열 화 할 때 JavaScript 객체를 얻 습니다 .
$.ajax({
url: "demo_test.txt",
success: function(data) {
console.log(JSON.stringify(data))
/* OR */
console.log(JSON.parse(data))
//this is what I am unsure about?
}
});
json.stringify(json.parse(data))
.