生成的Express项目不会调用route / index.js,而是加载public / index.html

时间:2019-04-05 05:21:45

标签: node.js express

我是新来表达的人,并使用表达生成器来获取项目的工作框架。

我使用以下命令

  1. npm install express-generator
  2. 表达--no-view后端
  3. cd后端
  4. npm安装
  5. SET DEBUG =后端:*&npm开始

现在1条路线都可以正常运行,而其他路线则不可以

           1 - http://localhost:3000/            //always load public/index.html and not executing routes/index.js

           2 - http://localhost:3000/users       //work fine and executing routes/users.js

    Its only generated code making changes index.js is not getting effect.

预先感谢

致谢

1 个答案:

答案 0 :(得分:0)

您已经为主页定义了两条路线。 index.html覆盖了index.js,您可以使用其中之一而不是全部使用。