반응형
nodejs에서 utf-8로 응답하기
response의 writeHead부분에 charset을 추가해주면 됩니다.
example
app.get('/', function(req, res){
//req.session.message = 'Hello World';
res.writeHead(200, {'Content-Type': 'text/html; charset=utf-8'});
res.write("welcome입니다");
res.end();
});
반응형
'Linux' 카테고리의 다른 글
[NodeJS, Android] JSON 데이터 서버로 넘기기 (0) | 2014.12.20 |
---|---|
[NodeJS] express설치 안될때 (0) | 2014.12.20 |
[RaspberryPI] 라즈베리파이에 몽고DB 설치 하는 방법 (0) | 2014.12.20 |
[NodeJS] 라즈베리파이 nodejs설치하기 (0) | 2014.12.19 |
GDB & LLDB command (0) | 2014.04.25 |
댓글