목록Face the fear, build the future/Revision Sector (30)
Silver Library (Archived)
callback 과 promises 에 대해 간략히 알아보자면. promises (object)는 asynchronous, 그러니까 비동기적인 작업을 의도할 경우. The Promise object represents the eventual completion (or failure) of an asynchronous operation and its resulting value. 쓰임세: (의도한 결과가) 성공 또는 실패, 즉 이분법 설계. callback (function)은 argument 로서 다른 function 에 passing 되도록 하는 것. A callback function is a function passed into another function as an argument, which ..
크게 2가지로 나누는 것. 그것은 1. 지금까지 여러 번 응용하며 구성 해 본 API 를 이용한 REST API. [post, put, get, delete] https://www.ibm.com/docs/en/informix-servers/12.10?topic=api-rest-syntax REST API syntax A subset of the HTTP methods is supported by the REST API. These methods are DELETE, GET, POST, and PUT. The examples that are shown in this topic contain line breaks for page formatting; however, the REST API does not a..
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') ); 그런..