freeCodeCamp/curriculum/challenges/chinese/06-quality-assurance/advanced-node-and-express/how-to-put-a-profile-togeth...

1.8 KiB

id challengeType forumTopicId title
5895f70ef9fc0f352b528e6b 2 301554 如何将 Profile 放在一起

Description

现在,只有通过验证的用户才能进入 /profile 页面,这样我们就可以在页面上使用 'req.user' 里的信息了。

请在变量中包含 username 键,值为 'req.user.username',并通过 render 方法传给 profile 页面。然后在 'profile.pug' 页面,添加这行 h2.center#welcome Welcome, #{username}! 代码来创建 class 为 center、id 为 welcome 且文本内容为 'Welcome, ' 后加用户名的 h2 元素。

以及,请在 profile 里添加 /logout 链接,后续会用于处理用户退出登录的逻辑:a(href='/logout') Logout

完成上述要求后,你可以在下方提交你的页面链接。如果你遇到了问题,可以参考 这里 的答案。

Instructions

Tests

tests:
  - text: 应在 Pug render 中给 /profile 传一个变量。
    testString: getUserInput => $.get(getUserInput('url')+ '/_api/server.js') .then(data => { assert.match(data, /username:( |)req.user.username/gi, 'You should be passing the variable username with req.user.username into the render function of the profile page'); }, xhr => { throw new Error(xhr.statusText); })

Challenge Seed

Solution

/**
  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.
*/