Files
2018-10-16 21:32:40 +05:30

16 lines
637 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: Get Route Parameter Input from the Client
localeTitle: 从客户端获取路由参数输入
---
## 从客户端获取路由参数输入
如果有人告诉你构建GET或POST你会相应地做app.get...或app.post...)。挑战的基本结构是:
```javascript
app.get("/:word/echo", function(req, res) {
// word = req.params.word;
// respond with the json object
});
```
[帮助我们的社区扩展这些提示和指南](https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/apis-and-microservices/basic-node-and-express/get-route-parameter-input-from-the-client/index.md) 。