We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
let musics = await album.getMusics() music.map(music => { ... });
getMusics()를 이용해 IMusic 컬렉션을 제공받아서 map 메소드를 사용하려고 하니 안됩니다!
The text was updated successfully, but these errors were encountered:
음 배열로 반환이 되는 것이 맞을텐데, 확인해보겠습니다. 일단, 해당 문제는 Array.from(music).map(music => { ... }); 으로 해결할 수 있을 것 같습니다.
Sorry, something went wrong.
배열 맞았어요! getMusic()의 리턴값 문제였습니다. IAlbum.getMusic의 프로미스 리턴값이 2번 이상 호출되면 null응 리턴하더라구요. 해당 문제는 멘토님의 답변 기다리는 중입니다
현재 문제 확인중입니다... ^^
No branches or pull requests
getMusics()를 이용해 IMusic 컬렉션을 제공받아서
map 메소드를 사용하려고 하니 안됩니다!
The text was updated successfully, but these errors were encountered: