标签: 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文件包含另外两个文件?