JSON.stringify()가 이 특정 값을 먹는다는 것을 알고 계셨습니까?

안녕하세요,
JSON.stringify()를 사용하여 값으로 함수를 포함하는 객체를 문자열로 변환하려고 할 때 상황에 직면한 적이 있습니까? 함수 값을 포함하는 키가 키와 함께 사라진 결과 값을 인쇄하여 알 수 있습니까?

JSON.stringify()가 null로 표시하기 때문입니다. 함수 값을 문자열로 변환할 수 없으므로 null을 유지합니다. 이제 전체 객체가 변경되었습니다. 포함하거나 기능으로 다시 변환하는 방법을 모르는 경우의 예입니다.

const obj = {
  author: "Fahim Zada",
  love: "0's and 1's",
  eat: () => console.log("Red Apple")
}

console.log(JSON.stringify(obj)) 
//"{'author':'Fahim Zada','love':'0's and 1's'}"
//Let us try to fix it by converting that key to string
obj.eat = obj.eat.toString()
console.log(JSON.stringify(obj))
//"{'author':'Fahim Zada','love':'0's and 1's','eat':'() => console.log(\'Red Apple\')'}"

//Converting back to js object 
const stringify = JSON.stringify(obj)
const convert = JSON.parse(stringify)
//Now you can access primitive values as normal
console.log(convert.author) 
//"Fahim Zada"
//For our function, we will do this with "new" keyword or without
//Invoking the function with ()
//Will return our function and now we can call it
const myFunc = new Function("return " + convert.eat)()
console.log(myFunc())


읽어 주셔서 감사합니다.

좋은 웹페이지 즐겨찾기