节点JS -URL参数简化如example.com/profile/me

时间:2016-02-13 16:16:45

标签: javascript node.js url-rewriting

如何将“www.example.com/movies?year=2009&genre=action”这样的网址缩短为“www.example.com/movies/2009/action”?

我正在使用节点js,我已经开发了apis,其中get请求返回JSON数组。但我需要渲染页面。如果我在我的API中使用res.render(页面),那么我可以将json发送到我的移动应用程序。那我怎么做到这一点? 比如说,facebook.com/mark-检索Mark的个人资料  facebook.com/john - 检索John的个人资料

感谢任何帮助。

提前致谢。

1 个答案:

答案 0 :(得分:1)

可能想要使用express。来自Scotch.io tutorialdocs

self