我正在尝试Cloud 9中的node express / socket.io项目。 我有以下项目结构
├──server.js
├──appconstants.js
├──公共
└──landing.js
├──意见
└──landing.html
我们正在使用app.use(express.static(__dirname));
我可以通过直接访问URL来访问.js文件,但是来自url的.html文件路径会给出空响应。
.html(get)的http响应代码在服务器中为200。
hostIP:hostport / public / landing.js是可访问的 但是
hostIP:hostport / views / landing.html提供空的html响应。 在Localhost中这些工作正常,c9给出了问题,并且提到我已经使用c9环境属性启动了我的服务器
server.listen(constants.read( '端口'),constants.read( 'URL'));