Product 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 3 - "Product List with Keys". Trong bài này, mình sẽ tạo một component ProductListWithKeys
để hiển thị một danh sách các sản phẩm, với mỗi sản phẩm được gán một key duy nhất.
Tạo một component Product 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 ProductListWithKeys
vào đó.
Bước 1: Tạo một ứng dụng React mới
npx create-react-app react-product-list cd react-product-list
Bước 2: Tạo component ProductListWithKeys
Trong thư mục src, tạo một file mới có tên là ProductListWithKeys.js.
File này sẽ chứa component ProductListWithKeys
.
ProductListWithKeys.js
import React from 'react'; import './ProductListWithKeys.css'; // Import CSS file const ProductListWithKeys = () => { const products = [ { id: 1, name: 'Laptop', price: 1000 }, { id: 2, name: 'Smartphone', price: 500 }, { id: 3, name: 'Tablet', price: 300 }, { id: 4, name: 'Headphones', price: 100 }, ]; return ( <div> <h2>Product List with Keys</h2> <ul className="product-list"> {products.map(product => ( <li key={product.id} className="product-item"> <strong>{product.name}</strong> - ${product.price} </li> ))} </ul> </div> ); }; export default ProductListWithKeys;
Bước 3: Tạo file CSS cho ProductListWithKeys (tuỳ chọn)
Nếu bạn muốn trang trí giao diện của ProductListWithKeys
, bạn có thể tạo một file CSS mới.
/* ProductListWithKeys.css */ .product-list { list-style-type: none; padding: 0; } .product-item { margin-bottom: 15px; background-color: #f8f9fa; padding: 15px; border-radius: 8px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); transition: background-color 0.3s ease; } .product-item:hover { background-color: #e9ecef; }
Bước 4: Sử dụng component ProductListWithKeys trong App
Sửa nội dung file src/App.js để sử dụng component ProductListWithKeys
.
App.js
import React from 'react'; import ProductListWithKeys from './ProductListWithKeys'; function App() { return ( <div className="App"> <h1>React Product List with Keys Exercise</h1> <ProductListWithKeys /> </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 sản phẩm được hiển thị, với mỗi sản phẩm có một key duy nhất.
Kết bài:
Với bài tập "Product List with Keys" này, mình đã tạo một danh sách sản phẩm trong React, với mỗi sản phẩm đượ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