Questions tagged «passport-local»

6
Passport.js-错误:无法将用户序列化为会话
我在Passport.js模块和Express.js中遇到问题。 这是我的代码,我只想使用硬编码登录名进行首次尝试。 我总是收到消息: 我搜索了很多东西,然后在stackoverflow中找到了一些帖子,但是我没有失败。 Error: failed to serialize user into session at pass (c:\Development\private\aortmann\bootstrap_blog\node_modules\passport\lib\passport\index.js:275:19) 我的代码如下所示。 'use strict'; var express = require('express'); var path = require('path'); var fs = require('fs'); var passport = require('passport'); var LocalStrategy = require('passport-local').Strategy; var nodemailer = require('nodemailer'); var app = express(); module.exports = function setupBlog(mailTransport, database){ …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.