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())
읽어 주셔서 감사합니다.
Reference
이 문제에 관하여(JSON.stringify()가 이 특정 값을 먹는다는 것을 알고 계셨습니까?), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/itsfz1/did-you-know-jsonstringify-eat-this-specific-value-4oo2텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)