freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/take-home-projects/build-a-nightlife-coordinat...

39 lines
2.1 KiB
Markdown
Raw Normal View History

---
id: bd7158d8c443eddfaeb5bdff
title: Build a Nightlife Coordination App
challengeType: 4
isRequired: true
videoUrl: ''
localeTitle: 建立夜生活协调应用程序
---
## Description
<section id="description"> <strong>目标:</strong>构建一个功能类似于此的完整堆栈JavaScript应用程序 <a href="http://whatsgoinontonight.herokuapp.com/" target="_blank">http</a> <a href="http://whatsgoinontonight.herokuapp.com/" target="_blank">//whatsgoinontonight.herokuapp.com/</a>并将其部署到Heroku。请注意对于每个项目您应该创建一个新的GitHub存储库和一个新的Heroku项目。如果您不记得如何执行此操作请重新访问<a href="/challenges/get-set-for-our-dynamic-web-application-projects">https://freecodecamp.com/challenges/get-set-for-our-dynamic-web-application-projects</a> 。以下是您应为此项目实施的特定用户故事: <strong>用户故事:</strong>作为未经身份验证的用户,我可以查看我所在区域的所有条形图。 <strong>用户故事:</strong>作为一名经过身份验证的用户,我可以将自己添加到一个栏中,以表明我今晚要去那里。 <strong>用户故事:</strong>作为一名经过身份验证的用户,如果我不想再去那里,我可以将自己从酒吧中删除。 <strong>用户故事:</strong>作为未经身份验证的用户,当我登录时,我不应该再次搜索。 <strong>提示:</strong>尝试使用<a href="https://www.yelp.com/developers/documentation/v2/overview" target="_blank">Yelp API</a>查找用户搜索的城市中的场地。如果您使用Yelp的API请务必在您的应用中提及。完成这些用户故事的实现后单击“我已完成此挑战”按钮然后输入GitHub存储库和在Heroku上运行的实时应用程序的URL。您可以通过Facebook上的朋友分享您的项目反馈。 </section>
## Instructions
<section id="instructions">
</section>
## Tests
<section id='tests'>
```yml
tests: []
```
</section>
## Challenge Seed
<section id='challengeSeed'>
</section>
## Solution
<section id='solution'>
```js
// solution required
```
</section>