5
then ()에서 반환 값 또는 Promise.resolve의 차이점은 무엇입니까?
차이점은 무엇입니까? new Promise(function(res, rej) { res("aaa"); }) .then(function(result) { return "bbb"; }) .then(function(result) { console.log(result); }); 코드 스 니펫 실행결과 숨기기스 니펫 확장 이: new Promise(function(res, rej) { res("aaa"); }) .then(function(result) { return Promise.resolve("bbb"); }) .then(function(result) { console.log(result); }); 코드 스 니펫 실행결과 숨기기스 니펫 확장 체인 .then ()과 …
314
javascript
angularjs
promise
q