app.js // session app.use(session(app)); // csrf app.use(new csrf()); // usage app.use(async (ctx, next) => { await ctx.render(‘home/index’, { title: ‘home page’, content: ‘this is home page’, csrf: ctx.csrf }); });
在表单页面中有值,但一提前就报Invalid CSRF token错误,该从哪些方面找原因?