Trả lời câu hỏi của riêng tôi trong trường hợp người khác có câu hỏi tương tự.
Đã cấu hình lại hàm getAllItems trong tệp queries.js để hiển thị tệp .ejs và chuyển vào kết quả truy vấn
const getAllItems = function(req, res) {
const sql = 'SELECT * FROM items ORDER BY id ASC';
pool.query(sql, (error, results) => {
if (error) {
throw error;
}
res.render("allItemInfo.ejs", {todoDbList: results.rows})
})
};
Gọi hàm trong tệp app.js
//all todo information
app.get('/todos', db.getAllItems);