我想在我的Node應用程序中使用Reg Ex與Express路由。我希望路由匹配路徑「/」或「/index.html」,而是它匹配一切:(Node js Express Framework - 正則表達式不工作
這裏是我的路線。
app.get(/\/(index.html)?/, function(req, res){
res.set('Content-Type', 'text/plain');
res.send('Hello from node!');
});
我怎樣才能得到這個正則表達式的工作?
謝謝!這很好用! – 2013-05-10 08:35:13