我正在使用 ExpressJS。我想将 url 作为参数传递。
app.get('/s/:url', function(req, res) {
console.log(req.params.url);
});
/s/sg.com //sg.com
/s/www.sg.com //www.sg.com
/s/http://sg.com //http://sg.com
/s/http://sg.com/folder //http://sg.com/folder
如何更正路线,以使之后的所有内容/s/
都被视为参数,包括斜线。
谢谢