如何使用Node在我的初始页面加载中包含多个html文件?

时间:2017-03-21 03:57:00

标签: javascript php node.js

我的意思是我希望我的index.html文件加载另外两个文件......

在PHP中,您只需将两个包含添加到index.html

...
<?php include file1.htm>
<?php include file2.htm>
...

Node就是这样的

app.get('/', function(req, res) {
    res.sendfile('./views/index.html');
})

但是我怎么能让index.html文件包含另外两个文件?

0 个答案:

没有答案