Class 06: useEffect hook
useEffect – Hook theo dõi và side effect
useEffect dùng để làm gì?
Cách dùng useEffect với dependency array
useEffect(() => {
// Code side effect
return () => {
// Cleanup (nếu cần)
};
}, [dependencies]);Các trường hợp dùng useEffect theo dependency
Cleanup function trong useEffect
Ví dụ thực hành chi tiết
Giải thích ví dụ
Bài tập thực hành
Last updated