Comment 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 6 - "Comment List with Keys". Trong bài này, mình sẽ tạo một component CommentListWithKeys
để hiển thị một danh sách các bình luận dưới một bài viết, với mỗi bình luận có một key duy nhất.
Tạo một component Comment 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 CommentListWithKeys
vào đó.
Bước 1: Tạo một ứng dụng React mới
npx create-react-app react-comment-list cd react-comment-list
Bước 2: Tạo component CommentListWithKeys
Trong thư mục src, tạo một file mới có tên là CommentListWithKeys.js.
File này sẽ chứa component CommentListWithKeys
.
CommentListWithKeys.js
import React from 'react'; const CommentListWithKeys = () => { const comments = [ { id: 1, author: 'John', content: 'Great post!' }, { id: 2, author: 'Alice', content: 'Thanks for sharing.' }, { id: 3, author: 'Bob', content: 'Awesome content.' }, { id: 4, author: 'Emily', content: 'Keep up the good work.' }, ]; return ( <div> <h2>Comment List with Keys</h2> {comments.map(comment => ( <div key={comment.id} className="comment"> <p><strong>{comment.author}:</strong> {comment.content}</p> </div> ))} </div> ); }; export default CommentListWithKeys;
Bước 3: Tạo file CSS cho CommentListWithKeys
Tạo một file CSS mới có tên CommentListWithKeys.css
trong thư mục src.
CommentListWithKeys.css
.comment { margin-bottom: 15px; padding: 10px; border: 1px solid #ccc; border-radius: 5px; background-color: #f9f9f9; }
Bước 4: Sử dụng component CommentListWithKeys trong App
Sửa nội dung file src/App.js để sử dụng component CommentListWithKeys
.
App.js
import React from 'react'; import CommentListWithKeys from './CommentListWithKeys'; import './CommentListWithKeys.css'; function App() { return ( <div className="App"> <h1>React Comment List with Keys Exercise</h1> <CommentListWithKeys /> </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ình luận dưới một bài viết được hiển thị, với mỗi bình luận có một key duy nhất.
Kết bài:
Với bài tập "Comment List with Keys" này, mình đã tạo một danh sách các bình luận dưới một bài viết trong React, với mỗi bình luận đượ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