관리 메뉴

SIMPLE & UNIQUE

64 Q&A 본문

초보자를 위한 react 200제/예제별 Q&A

64 Q&A

착한코딩 2021. 1. 26. 21:35

64번 예제에 대한 질문을 댓글로 남겨주세요.

 

import React, { Component } from 'react';

class R064_Promise extends Component {
  componentDidMount(){
    new Promise(resolve => {
      setTimeout(function() {
        resolve('react');
      }, 1500);
    })
    .then(function(result) {
      console.log(result);
      return result + 200;
    })
    .then(result => {
      console.log(result);
    });//세미콜론 추가
  };//세미콜론 추가

  render() {
    return (
        <h1>Promise</h1>
    )
  }
};//세미콜론 추가

export default R064_Promise;


참고 링크

https://serpiko.tistory.com/609

 

자바스크립트 TypeError: (intermediate value)(intermediate value)(...) is not a function 에러

 자바스크립트 TypeError: (intermediate value)(intermediate value)(...) is not a function 에러 즉시실행함수, 클로저 등을 사용할때에 아마도 다음과 같이 가장 가독성 좋은 문법형태로 많이 사용할 것이다...

serpiko.tistory.com

https://stackoverflow.com/questions/42036349/uncaught-typeerror-intermediate-value-is-not-a-function

 

Uncaught TypeError: (intermediate value)(...) is not a function

Everything works fine when I wrote the js logic in a closure as a single js file, as: (function(win){ //main logic here win.expose1 = .... win.expose2 = .... })(window) but when I try to

stackoverflow.com

 

'초보자를 위한 react 200제 > 예제별 Q&A' 카테고리의 다른 글

62 Q&A  (0) 2021.01.26
63 Q&A  (0) 2021.01.26
65 Q&A  (0) 2021.01.26
66 Q&A  (0) 2021.01.26
67 Q&A  (0) 2021.01.26
Comments