Effect callbacks are synchronous to prevent race conditions.
일어난 일
이런 식으로 async 함수를 useEffect의 첫 번째 인수로 설정했습니다.
const getAllBlogs = async () => {
if (user) {
blogService.setToken(user.token)
const blogs = await blogService.getAll()
setBlogs(blogs)
}
}
useEffect(getAllBlogs, [user])
다음과 같은 오류가 발생했습니다.
Put the async function inside인 것 같습니다. 정중하게 샘플 코드까지 제시해 줍니다.
수정
useEffect의 첫 번째 인수의 함수 안에 새롭게 fetchBlogs라는 async 함수를 정의해, 그 안에서 await getAllBlogs()로 했습니다.
const getAllBlogs = async () => {
if (user) {
blogService.setToken(user.token)
const blogs = await blogService.getAll()
setBlogs(blogs)
}
}
useEffect(() => {
const fetchBlogs = async () => {
await getAllBlogs()
}
fetchBlogs()
}, [user])
하지만 여전히 오류가 발생했습니다.
fetchBlogs 안에 전부 넣으면 에러는 나오지 않게 되었습니다.
useEffect(() => {
const fetchBlogs = async () => {
if (user) {
blogService.setToken(user.token)
const blogs = await blogService.getAll()
setBlogs(blogs)
}
}
fetchBlogs()
}, [user])
Reference
이 문제에 관하여(Effect callbacks are synchronous to prevent race conditions.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/koyablue/items/e10e0772cb58969860eb
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
const getAllBlogs = async () => {
if (user) {
blogService.setToken(user.token)
const blogs = await blogService.getAll()
setBlogs(blogs)
}
}
useEffect(getAllBlogs, [user])
useEffect의 첫 번째 인수의 함수 안에 새롭게 fetchBlogs라는 async 함수를 정의해, 그 안에서 await getAllBlogs()로 했습니다.
const getAllBlogs = async () => {
if (user) {
blogService.setToken(user.token)
const blogs = await blogService.getAll()
setBlogs(blogs)
}
}
useEffect(() => {
const fetchBlogs = async () => {
await getAllBlogs()
}
fetchBlogs()
}, [user])
하지만 여전히 오류가 발생했습니다.
fetchBlogs 안에 전부 넣으면 에러는 나오지 않게 되었습니다.
useEffect(() => {
const fetchBlogs = async () => {
if (user) {
blogService.setToken(user.token)
const blogs = await blogService.getAll()
setBlogs(blogs)
}
}
fetchBlogs()
}, [user])
Reference
이 문제에 관하여(Effect callbacks are synchronous to prevent race conditions.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/koyablue/items/e10e0772cb58969860eb텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)