duocmmo / edu-comments

Quản lý các bình luận trên edu.duthanhduoc.com
https://edu.duthanhduoc.com/
0 stars 0 forks source link

https://edu.duthanhduoc.com/learn/ReactJs-Super?lessonId=123 #13

Open utterances-bot opened 2 months ago

utterances-bot commented 2 months ago

Khu vực học tập | Được Edu

Được chỉ cung cấp các khóa học lập trình online chất lượng, nói không với khóa lởm!

https://edu.duthanhduoc.com/learn/ReactJs-Super?lessonId=123

vuhonglinh commented 2 months ago

useQuery không còn onSuccess

duthanhduoc commented 2 months ago

useQuery không còn onSuccess

Chúng ta có thể xử lý onSuccess như thế này nhé

export const useGetCourseInfo = ({ url }: { url: string }) => {
  return useQuery({
    queryKey: ['student', 'courseInfo', url],
    queryFn: () => studentCourseApi.getCourseInfo(url).then(res => {
      // Xử lý onSuccess tại đây nhé
      // ....
      return res
    })
  })
}