我的 node.js 应用程序有问题。我正在使用包connection、connection-route、socket.io和ejs。
我的应用程序向 html 页面(通过 socket.io 连接)提供信息,这些信息由 ejs 模板管理。当我使用参数到达目的地时,例如http://localhost:5001/machine/:id2
,会发生一些奇怪的事情。连接路由代码如下:
router.get('/machine/:mac_id', function (req, res, next) {
var mac_index = req.params.mac_id.slice(1,req.params.mac_id.length);
console.log(mac_index);
res.writeHead(200, { 'Content-Type': 'text/html' });
var str = mod_fs.readFileSync(mac_route + '/index.html', 'utf8') ;
var ret = mod_ejs.render(str, {
filename: mac_route,
title: "Machine Overview",
/* other informations */
});
res.end(ret);
}
该变量包含正确加载mac_route
的文件的路径。index.html
问题在于mac_index
变量。在控制台上打印 3 行:
id2
unctions.js
query-1.9.1.js
第一行显然是正确的,最后两行显然是不正确的,事实上这是两个 javascript 文件(我的文件functions.js
和 jquery 的文件jquery-1.9.1.js
)。这些文件包含在 index.html 文件的标头中。
HTML结构:
header.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title> <%= title %> </title>
<link rel='stylesheet' href='/style.css' type="text/css"/>
<script src="http://localhost:5001/socket.io/socket.io.js"></script>
<script language="javascript" type="text/javascript" src="functions.js"></script>
<script language="javascript" type="text/javascript" src="jquery-1.9.1.js"></script>
</head>
<body>
<div id="header">
...
</div>
<div id="page">
索引.html
<% include /header.html %>
<div id="commands">
...
</div>
<div id="main">
... code of the page, manage informations received ...
</div>
<% include /footer.html %>
页脚.html
<div id="footer">
...
</div>
</div> <!-- Close the "page" div opened in the header //-->
</body>
</html>
我找不到错在哪里。为什么将文件名作为req
对象的参数?