비동기 함수 및 반환 값
귀하의 문제는 반환 값에도 불구하고 비동기 함수가 반환 값을 반환하지 않기 때문에 종종 그렇게 하지 않는 것처럼 보인다는 것입니다. 약속으로 포장되어 있습니다. 최종 값에 액세스하려면 두 가지 옵션이 있습니다:
1. Promise Chaining
Promise의 .then() 메서드를 연결하여 최종 값을 검색할 수 있습니다.
<code class="javascript">let allPosts = new Posts('https://jsonplaceholder.typicode.com/posts'); allPosts.init() .then(d => { console.log(allPosts.getPostById(4)); // Here you can return the value as needed });</code>
2. 비동기/대기
비동기 함수 내에서 대기를 사용하여 함수 실행을 일시적으로 일시 중지하고 약속이 해결될 때까지 기다릴 수 있습니다.
<code class="javascript">async function myFunc() { const postId = 4; await allPosts.init(); // This is logging the correct value console.log('logging: ' + JSON.stringify(allPosts.getPostById(postId), null, 4)); // Return the result using await return allPosts.getPostById(postId); } myFunc() .then(result => console.log(result)) .catch(error => console.error(error));</code>
이런 방식으로 다음을 수행할 수 있습니다. 코드의 비동기 특성을 올바르게 처리하여 getPostById(id) 값을 반환하는 함수를 만듭니다.
위 내용은 Promise에 포함되어 있음에도 불구하고 비동기 함수의 반환 값에 액세스하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!