我将POST数据从Python程序发送到Node.JS-server并使用res.end返回。这是python代码:
#! /usr/bin/env python
# -*- coding: utf-8 -*-
import requests
value = u"Этот текст в кодировке Unicode"
url = "http://localhost:3000/?source=test"
headers = {'content-type': 'text/plain; charset=utf-8'}
r = requests.post(url, data=value.encode("utf-8"))
print r.text
以下是我在Node.JS中处理数据的方法:
http.createServer(function(req, res) {
req.setEncoding = "utf8"
var queryData = '';
if (req.method == 'POST') {
req.on('data', function(data) {
queryData += data;
});
req.on('end', function() {
res.writeHead(200, {
'Content-Type': 'text/plain'
});
res.end(queryData)
});
} else {
// sending '405 - Method not allowed' if GET
res.writeHead(405, {
'Content-Type': 'text/plain'
});
res.end();
}
}).listen(3000, '127.0.0.1');
结果我得到了:
$ python test.py
ÐÑÐ¾Ñ ÑекÑÑ Ð² кодиÑовке Unicode
如何正确设置编码以获得“ЭтоттекствкодировкеUnicode”?感谢。
答案 0 :(得分:3)
您需要设置返回数据的字符集:
res.writeHead(200, {
'Content-Type': 'text/plain; charset=utf-8'
});
在顶部,您正在设置即将到来的数据的“解码”,但从未设置出响应。
答案 1 :(得分:1)
setEncoding是一个方法,而不是=使用以下内容:
req.setEncoding('utf8');
见这里的例子: http://nodejs.org/api/http.html