Я добавляю нумерацию страниц в список товаров.Но я продолжал иметь ошибку:
console.log(data.rows);
^
Вот мой js-файл, который запрашивает мою базу данных:
list: (client, filter, callback) => {
const productListQuery = `
SELECT *
FROM products
ORDER BY id
`;
client.query(productListQuery, (req, result)=>{
console.log(result.rows);
callback(result.rows);
});
Вот мой router.get в моем server.js:
app.get('/products', function (req, res, next) {
Product.list(client, {limit: 8}, {offset: (req.query.p - 1) * 8}, {
}, function (products) {
res.render('/client/product-list', {
products: products,
title: 'Products',
pagination: {
page: req.query.p || 1,
limit: 8,
n: req.query.p || 1
}
});
});
});