我在后端使用 Express (v3),它还提供静态内容,如下所示:
app.use(allowCrossDomain);
app.use(disableETag);
app.use(app.router);
app.use(express["static"](webRootDir));
app.use(express.methodOverride());
app.use(express.bodyParser());
app.use(express.errorHandler({ dumpExceptions: true, showStack: true }));
app.set('view engine', 'html');
app.set('views', webRootDir);
app.engine("html", handlebarsEngine);
因此,对“/customers.html”的请求由express.static
中间件提供服务。但是,请求“/customers”不起作用,因为没有“customers”文件,也没有这样的动态内容路由。
当然,我可以按照使用 Express 在动态路由上提供静态文件中解释的路径,从动态路由中提供文件“customers.html” 。
但是,我认为这是一种矫枉过正,这种事情应该可以通过默认文件扩展名简单地配置,但我只是找不到如何。谁能给我看?