我无法在节点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文件。