當我使用Express框架時,我將我的「.html」文件放到文件夾視圖中,然後將「.js」和「.css」文件放入public。當我運行我的應用程序時,我可以獲取js和CSS,但我無法得到articlecontent.html。以下是我的頁面index.html。nodejs Express 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");
});
您是否有關於articlecontent.html的視圖和路線? –
但是,如果我將articlecontent.html放入視圖中,併爲articlecontent.html添加路由,它如何知道如何更改iframe.code的屬性「src」:Content app.get('/ articlecontent',function(req, RES){res.render( 「articlecontent.html」)}); – brucewar