목록Face the fear, build the future (128)
Silver Library (Archived)
같이 협동해보며 느낀점은 제가 이를 따로, 스스로가 정립 할 필요가 있어 보인다는 결론에 다다랐습니다. 그래서 json 같은 array 타입의 경우, 어떻게 JS 파일 내에서 구성을 할 것인가? 이 질문은 할 때마다 매번 되네이면서 의문을 가져다주었습니다. 그래서 저는 제가 습득하고 배운 방식으로 진행 해 보려고 합니다. json.parse 와 json.stringify() method 로 말이죠. 1. Object 로 변환하는 법. (json.parse) const userJSONData = `{ "name": "Toko Amano", "age": "17", "city": "Tokyo" }`; const userObj = JSON.parse(userJSONData); console.log(userObj..
우선, 저 API 로 불러 들이는 거라고는 get, post 외에는 다른 방식으로 localstorage 내 위치하게 끔 해서 react 에서 출력하는 방식 자체를 접해 본 적이 없었기에 당황스러웠던 적이 있습니다. 물어볼 곳이라고는 오직 구글, stackoverflow, 레딧, 디스코드, 슬랙 정도였죠. 생각해보니 은근히 많네요. 아무튼, 그 중에서 드디어 제가 취약했던 점의 근원의 종합세트를 발견했습니다. 바로 제목대로: useState 를 이용해서, 해당 localStorage 내부에서 불러오게 될 api.json 배열 파일을 읽어오거나 출력시키고, 수정 되게끔 할 수 있는지. 그리고 이걸 하는거 좋은데, 뭘 되게 하고 싶은건지. 그래서 나온 결론이, 1. 특정 버튼을 누르면 2. 그 버튼의 내용물..
https://www.toptal.com/nodejs/why-the-hell-would-i-use-node-js Why The Hell Would I Use Node.js? A Case-by-Case Tutorial Node.js was never created to solve the compute scaling problem. It was created to solve the I/O scaling problem. Find out why, with case-by-case tutorial. www.toptal.com
지금 까지 알고 있었던 react props 는 오직, document 에 예시로 올라온 그 props 만 알고 있었습니다. 아래의 이 코드들 말이죠. function Welcome(props) { return Hello, {props.name}; } class Welcome extends React.Component { render() { return Hello, {this.props.name}; } } 그리고 컴포넌트 렌더링은 이런 식으로 예시가 나와있습니다. function Welcome(props) { return Hello, {props.name}; } const element = ;ReactDOM.render( element, document.getElementById('root') ); 그런..