当我使用 Express 框架时,我将“.html”文件放入文件夹视图中,然后将“.js”和“.css”文件放入 public。当我运行我的应用程序时,我可以获得 js 和 css,但我不能'没有得到articlecontent.html。下面是我的页面index.html。
<div class="nav-collapse">
<ul class="nav">
<li><a href="#">Home</a></li>
<li class="active"><a href="articlecontent.html" target="home">Content</a></li>
</ul>
<div id="container" class="container" style="height: inherit">
<iframe id="home" name="home" scrolling="no">content</iframe>
</div>
</div>
app.get("/",function index(req,res){
res.render("index.html");
});