User 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 4 - "User List with Keys". Trong bài này, mình sẽ tạo một component UserListWithKeys
để hiển thị một danh sách người dùng, với mỗi người dùng được gán một key duy nhất.
Tạo một componentUser 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 UserListWithKeys
vào đó.
Bước 1: Tạo một ứng dụng React mới
npx create-react-app react-user-list cd react-user-list
Bước 2: Tạo component UserListWithKeys
Trong thư mục src, tạo một file mới có tên là UserListWithKeys.js.
File này sẽ chứa component UserListWithKeys
.
UserListWithKeys.js
import React from 'react'; import './UserListWithKeys.css'; // Import CSS file const UserListWithKeys = () => { const users = [ { id: 1, name: 'John Doe', age: 30 }, { id: 2, name: 'Jane Smith', age: 25 }, { id: 3, name: 'Bob Johnson', age: 40 }, { id: 4, name: 'Alice Williams', age: 35 }, ]; return ( <div> <h2>User List with Keys</h2> <ul className="user-list"> {users.map(user => ( <li key={user.id} className="user-item"> <strong>{user.name}</strong> - {user.age} years old </li> ))} </ul> </div> ); }; export default UserListWithKeys; export default UserListWithKeys;
Bước 3: Tạo file CSS cho UserListWithKeys (tuỳ chọn)
Nếu bạn muốn trang trí giao diện của UserListWithKeys
, bạn có thể tạo một file CSS mới.
UserListWithKeys.css
/* UserListWithKeys.css */ .user-list { list-style-type: none; padding: 0; } .user-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; } .user-item:hover { background-color: #e9ecef; }
Bước 4: Sử dụng component UserListWithKeys trong App
Sửa nội dung file src/App.js để sử dụng component UserListWithKeys
.
App.js
import React from 'react'; import UserListWithKeys from './UserListWithKeys'; function App() { return ( <div className="App"> <h1>React User List with Keys Exercise</h1> <UserListWithKeys /> </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 người dùng được hiển thị, với mỗi người dùng có một key duy nhất.
Kết bài:
Với bài tập "User List with Keys" này, mình đã tạo một danh sách người dùng trong React, với mỗi người dùng đượ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