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();