为什么表达js发送index.html没有任何配置

时间:2018-05-03 07:11:24

标签: node.js express

你好,我是初学者。在提问之前,我对我的英语感到抱歉

我制作一个示例快递代码&文件结构

-I-bin(文件夹) - www.js

I-public(文件夹) - index.html

I-index.js

和代码就是那样

www.js是

console.log

index.js是

let debug = require('debug')('example-server')
let app = require('../')

app.set('port', process.env.PORT || 3000)

let server = app.listen(app.get('port'), function () {
  debug('Express server listening on port ' + server.address().port)
})

但如果我在localhost上连接:3000是index.html中的渲染页面

以上代码均未设置index.html的路径。

其他示例代码使用'渲染'函数,但不在此示例代码中。为什么我的索引示例代码显示了index.html?

谢谢〜! :)

0 个答案:

没有答案