промежуточное ПО with-iron-session на следующем сервере
В приведенных мною примерах создания промежуточного программного обеспечения with-iron-session в next.js используется метод next-connect и его метод использования . Но этот пакет меняет структуру маршрутизации проекта, и запросы больше не перемещаются в папку страниц . Есть ли способ использовать сеанс железа на моем следующем сервере? Мой файл server.js :
const dev = process.env.NODE_ENV !== 'production';
const next = require('next');
const app = next({dev});
const {createServer} = require('http');
const handle = app.getRequestHandler()
const {parse} = require('url');
app.prepare().then(() => {
createServer((req, res) => {
// Be sure to pass `true` as the second argument to `url.parse`.
// This tells it to parse the query portion of the URL.
const parsedUrl = parse(req.url, true);
const {pathname, query} = parsedUrl;
if (pathname === '/a') {
app.render(req, res, '/b', query);
} else if (pathname === '/b') {
app.render(req, res, '/a', query);
} else {
// I need to have access to the sessions here, so that I can verify the user.
// console.log('->', req.session.get("user"))
handle(req, res, parsedUrl);
}
}).listen(3000, err => {
if (err) throw err;
console.log('> Ready on http://localhost:3000');
});
});
Спасибо.