用Nodejs+express写了一个服务器程序: var express = require(‘express’); var app = express.createServer(); var io = require(‘socket.io’).listen(app); app.configure(function () { …//此处代码省略 });
app.get('/’, function (req, res) { res.sendfile(__dirname + ‘/public/index.html’); }); app.use('/public’, express.static(__dirname + ‘/public’)); app.listen(7000); console.log(‘daemon start on http://127.0.0.1:7000’);
做了一个index.html页面,在本地用IE直接打开OK, 用http://127.0.0.1:7000 访问成乱码
想加入encoding = ‘gb2312’, 在哪里修改比较好?