Href to mustache模板 - 相对路径问题

时间:2017-11-21 17:11:44

标签: javascript node.js

当使用胡子呈现页面时,我遇到了相对url的问题  模板引擎

我已经定义了一个像app.get('/ procedure /:procedure',templateEngine.getProcedureDescription)这样的路线;通过点击链接获得要呈现的html页面

 <a href="procedure/IVF">Read More</a>
点击上述链接后,

网址会被重定向到http://localhost:1557/procedure/IVF

我的所有CSS和JS文件都放在根目录的assets文件夹中,并使用相对URL加载

 <link rel="stylesheet" href="./assets/css/plugins.min.css">

在我的情况下,当页面被渲染时,浏览器将URL作为
派生        http://localhost:1337/procedure/asset/css/plugins.min.css其中文件的实际路径为http://localhost:1337/asset/css/plugins.min.css

我需要在Href,路由或相对路径中进行哪些更改才能获取所有加载的css文件?

0 个答案:

没有答案