脚本和CSS文件没有在节点JS中加载?

时间:2017-07-28 09:54:10

标签: html node.js

我无法在节点js中加载jquery和css文件

public
javascripts
stylesheets

我有html文件,我在server.js中读取如下

http.createServer(function (req, res) {
res.writeHead(200, { 'Content-Type': 'text/html' });
fs.readFile('Views/index.html', 'utf8', function (error, data) {
    if (error) {
        res.writeHead(404);
        res.write('file not found');
    }
    else {
        res.write(data);
    }
    res.end()
});
}).listen(port);

如何正确加载脚本和css文件。

0 个答案:

没有答案