如果我做app.use(express.static(path.join(__ dirname,' public')));它总是在公共场合打开index.html文件。

时间:2017-01-19 05:54:44

标签: node.js express post node-modules

当服务器开始使用post方法时,我无法在公共场所打开register.html文件。 默认情况下,如果缺少index.html文件,则在启动服务器时默认为CAN NOT / GET。 所以帮我弄清楚..如何打开注册.html

1 个答案:

答案 0 :(得分:0)

express.static中间件只接受GET请求。如果你想在POST方法中使用该文件,你需要单独定义一个路由。