Image Gallery 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 7 - "Image Gallery with Keys nâng cao". Trong bài này, mình sẽ tạo một component ImageGalleryWithKeys
để hiển thị một danh sách các hình ảnh trong một bộ sưu tập, với mỗi hình ảnh có một key duy nhất.
Tạo một component Image Gallery 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 ImageGalleryWithKeys
vào đó.
Bước 1: Tạo một ứng dụng React mới
npx create-react-app react-image-gallery cd react-image-gallery
Bước 2: Tạo component ImageGalleryWithKeys
Trong thư mục src, tạo một file mới có tên là ImageGalleryWithKeys.js.
File này sẽ chứa component ImageGalleryWithKeys
.
ImageGalleryWithKeys.js
import React from 'react'; const ImageGalleryWithKeys = () => { const images = [ { id: 1, src: 'https://via.placeholder.com/150', alt: 'Image 1' }, { id: 2, src: 'https://via.placeholder.com/150', alt: 'Image 2' }, { id: 3, src: 'https://via.placeholder.com/150', alt: 'Image 3' }, { id: 4, src: 'https://via.placeholder.com/150', alt: 'Image 4' }, ]; return ( <div> <h2>Image Gallery with Keys</h2> <div className="image-gallery"> {images.map(image => ( <img key={image.id} src={image.src} alt={image.alt} /> ))} </div> </div> ); }; export default ImageGalleryWithKeys;
Bước 3: Tạo file CSS cho ImageGalleryWithKeys
Tạo một file CSS mới có tên ImageGalleryWithKeys.css
trong thư mục src.
ImageGalleryWithKeys.css
.image-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); grid-gap: 10px; } .image-gallery img { max-width: 100%; height: auto; }
Bước 4: Sử dụng component ImageGalleryWithKeys trong App
Sửa nội dung file src/App.js để sử dụng component ImageGalleryWithKeys
.
App.js
import React from 'react'; import ImageGalleryWithKeys from './ImageGalleryWithKeys'; import './ImageGalleryWithKeys.css'; function App() { return ( <div className="App"> <h1>React Image Gallery with Keys Exercise</h1> <ImageGalleryWithKeys /> </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 hình ảnh trong một bộ sưu tập được hiển thị, với mỗi hình ảnh có một key duy nhất.
Kết bài:
Với bài tập "Image Gallery with Keys" này, mình đã tạo một danh sách các hình ảnh trong một bộ sưu tập trong React, với mỗi hình ảnh đượ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