1.自己用express搭建的本地服务器,利用webpack的proxyTable做了线上接口转发。
2.线上接口后台是java,返回数据是gbk格式
3.客户端发起post请求能正确返回数据(network中)
4.console.log或者渲染在页面中中文都是乱码,请问怎么解决
试了下iconv-lite不奏效,不知道是不是写的不对
自己写的接口
apiRoutes.post('/hospitallist.xhtml',function(req,res){
res.send(res)
})
会被转到xxx.com/hospitallist.xhtml
我想大声告诉你2017-05-16 13:40:09
最后还是用superagent的方法解决了
var charset = require('superagent-charset');
var superagent = charset(require('superagent'));
function agent(req,res){
superagent.post(url+req.path)
.type('form')
.send(req.body)
.set('Accept', 'application/json')
.charset('gbk')
.end(function (err, sres) {
var html = sres.text;
res.send(html);
});
}
app.post('/list',function(req,res,next){
agent(req,res)
})
PHP中文网2017-05-16 13:40:09
后台发送数据到前端,在实例化PrintWriter对象前加上
response.setCharacterEncoding("GBK");
然后再 PrintWriter writer=response.getWriter();