--- id: 5895f70cf9fc0f352b528e67 title: 实现 Passport 用户的序列化 challengeType: 2 forumTopicId: 301556 dashedName: implement-the-serialization-of-a-passport-user --- # --description-- 截至目前,我们还没有配置完数据库,因此还无法加载用户数据。 实现这个的方式很多,但对于我们的项目,一旦服务器启动,那么只要有 app 实例在运行,数据库就应一直处于连接状态。 为此,你需要在环境变量 `MONGO_URI` 中添加你的数据库地址(比如:`mongodb+srv://:@cluster0-jvwxi.mongodb.net/?retryWrites=true&w=majority`)。 我们会在 `connection.js` 文件中调用它。 *你可以在 [MongoDB Atlas](https://www.mongodb.com/cloud/atlas) 创建一个免费的数据库。* 现在我们想要连接到数据库,然后开始监听请求。 这样做的目的是在连接数据库之前或者出现数据库错误时,不接收任何请求。 要实现这一点,你需要在以下代码中包含序列化和应用的路由: ```js myDB(async client => { const myDataBase = await client.db('database').collection('users'); // Be sure to change the title app.route('/').get((req, res) => { //Change the response to render the Pug template res.render('pug', { title: 'Connected to Database', message: 'Please login' }); }); // Serialization and deserialization here... // Be sure to add this... }).catch(e => { app.route('/').get((req, res) => { res.render('pug', { title: e, message: 'Unable to login' }); }); }); // app.listen out here... ``` 记得要取消 `deserializeUser` 中 `myDataBase` 的注释,并把 `doc` 添加到 `done(null, null)`。 完成上述要求后,请提交你的页面链接。 如果你遇到了问题,可以参考[这里](https://gist.github.com/camperbot/175f2f585a2d8034044c7e8857d5add7)的答案。 # --hints-- 应存在数据库连接。 ```js (getUserInput) => $.get(getUserInput('url') + '/').then( (data) => { assert.match( data, /Connected to Database/gi, 'You successfully connected to the database!' ); }, (xhr) => { throw new Error(xhr.statusText); } ); ``` 序列化应正确使用数据库,应用 `doc` 调用 `done(null, null)`。 ```js (getUserInput) => $.get(getUserInput('url') + '/_api/server.js').then( (data) => { assert.match( data, /null,\s*doc/gi, 'The callback in deserializeUser of (null, null) should be altered to (null, doc)' ); }, (xhr) => { throw new Error(xhr.statusText); } ); ``` # --solutions-- ```js /** Backend challenges don't need solutions, because they would need to be tested against a full working project. Please check our contributing guidelines to learn more. */ ```