Movie List with Keys trong ReactJS
Trong loạt bài tập này về ReactJS: Lists và Keys, mình sẽ thực hiện Bài 11 - "Movie List with Keys ". Trong bài này, mình sẽ tạo một component MovieListWithKeys
để hiển thị một danh sách các bộ phim, với mỗi bộ phim có một key duy nhất.
Tạo một component Movie List with Keys trong ReactJS
Mình sẽ bắt đầu bằng việc tạo một ứng dụng React mới và thêm component MovieListWithKeys
vào đó.
Bước 1: Tạo một ứng dụng React mới
npx create-react-app react-movie-list cd react-movie-list
Bước 2: Tạo component MovieListWithKeys
Trong thư mục src, tạo một file mới có tên là MovieListWithKeys.js.
File này sẽ chứa component MovieListWithKeys
.
MovieListWithKeys.js
import React from 'react'; const MovieListWithKeys = () => { const movies = [ { id: 1, title: 'The Shawshank Redemption', director: 'Frank Darabont', year: 1994 }, { id: 2, title: 'The Godfather', director: 'Francis Ford Coppola', year: 1972 }, { id: 3, title: 'The Dark Knight', director: 'Christopher Nolan', year: 2008 }, { id: 4, title: 'Pulp Fiction', director: 'Quentin Tarantino', year: 1994 }, ]; return ( <div> <h2>Movie List with Keys</h2> <ul className="movie-list"> {movies.map(movie => ( <li key={movie.id}> <h3>{movie.title}</h3> <p>Director: {movie.director}</p> <p>Year: {movie.year}</p> </li> ))} </ul> </div> ); }; export default MovieListWithKeys;
Bước 3: Tạo file CSS cho MovieListWithKeys
Tạo một file CSS mới có tên MovieListWithKeys.css
trong thư mục src.
MovieListWithKeys.css
.movie-list { list-style: none; padding: 0; } .movie-list li { margin-bottom: 20px; } .movie-list li h3 { margin-bottom: 10px; }
Bước 4: Sử dụng component MovieListWithKeys trong App
Sửa nội dung file src/App.js
để sử dụng component MovieListWithKeys
.
App.js
<strong>import</strong> React from 'react'; import MovieListWithKeys from './MovieListWithKeys'; import './MovieListWithKeys.css'; function App() { return ( <div className="App"> <h1>React Movie List with Keys Exercise</h1> <MovieListWithKeys /> </div> ); } export default App;
Bước 5: Chạy ứng dụng React
Quay lại terminal và chạy lệnh sau để khởi động ứng dụng React:
npm start
Mở trình duyệt và truy cập http://localhost:3000 để xem ứng dụng của bạn. Bạn sẽ thấy một danh sách các bộ phim được hiển thị, với mỗi bộ phim có một key duy nhất.
Kết bài:
Với bài tập "Movie List with Keys" này, mình đã tạo một danh sách các bộ phim trong React, với mỗi bộ phim được gán một key duy nhất. Điều này giúp React hiểu và quản lý danh sách hiệu quả hơn. Hãy tiếp tục tìm hiểu và thực hành để làm quen với các tính năng khác của ReactJS và phát triển kỹ năng lập trình của bạn!
Bài giải
-------------------- ######## --------------------
Câu hỏi thường gặp liên quan:
- Simple List with Keys trong ReactJS
- Todo List with Keys trong ReactJS
- Product List with Keys trong ReactJS
- User List with Keys trong ReactJS
- Blog Post List with Keys trong ReactJS
- Comment List with Keys trong ReactJS
- Image Gallery with Keys trong ReactJS
- Recipe List with Keys trong ReactJS
- Contact List with Keys trong ReactJS
- Event List with Keys trong ReactJS
- Movie List with Keys trong ReactJS