app.use(session({
resave: false,
saveUninitialized: true,
secret: 'myblog',
//name: 'testapp',
cookie: {maxAge: 1000 * 60 * 60 * 24 * 30},//30 days
store: new MongoStore({ //創(chuàng)建新的mongodb數(shù)據(jù)庫(kù)
host: 'localhost', //數(shù)據(jù)庫(kù)的地址调俘,本機(jī)的話就是127.0.0.1,也可以是網(wǎng)絡(luò)主機(jī)
port: 27017, //數(shù)據(jù)庫(kù)的端口號(hào)
db: 'blog' //數(shù)據(jù)庫(kù)的名稱矗晃。
})
}));
這段話要放在
app.use(api);
之前新啼。拉宗。