标签: node.js express url
我正在尝试使用节点js服务单个页面。我希望页面根据用户传递的值而有所不同。我知道如何使用类似site.com/page?var=value的url参数来做到这一点,但我希望我的url看起来像这样:site.com/value。现在,我正在做的就是提供页面。
site.com/page?var=value
site.com/value
app.get('/', function (req, res) { res.sendFile(path.resolve(__dirname + '/../template/index.html')); });
答案 0 :(得分:1)
您应该阅读文档:https://expressjs.com/en/guide/routing.html
为什么不使用urlParameters?
seq