0

我的 node.js 应用程序有问题。我正在使用包connectionconnection-routesocket.ioejs

我的应用程序向 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对象的参数?

4

1 回答 1

0

这些文件的规范化 URL 是:

http://localhost:5001/machine/functions.js
http://localhost:5001/machine/jquery-1.9.1.js

那些匹配你的路线(/machine/:mac_id),所以他们将被它处理。

尝试在路由 之前connect.static包含中间件:

app.use(connect.static(__dirname));

(假设您的 Connect 应用程序存储在app变量中,并且 JS 文件与您的 Node 脚本位于同一目录中;如果没有,请更改__dirname为指向 JS 文件所在的目录)。

于 2013-03-27T16:47:37.510 回答