javascript - nodejs處理post請求回的gbk亂碼怎么處理?
問題描述
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
問題解答
回答1:最后還是用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)})回答2:
res.charset = ’gbk’;res.send(’some thing’);回答3:
后臺發送數據到前端,在實例化PrintWriter對象前加上
response.setCharacterEncoding('GBK');然后再 PrintWriter writer=response.getWriter();
相關文章:
1. 運行python程序時出現“應用程序發生異常”的內存錯誤?2. 小白學python的問題 關于%d和%s的區別3. macos - 無法source activate python274. javascript - npm run build后調用api返回index.html5. android - 如何實現QQ pad 點擊右側輸入框,只頂右側的布局,左側布局不動6. css3 - css怎么做出這樣的效果?7. html5 - 前端面試碰到了一個緩存數據的問題,來論壇上請教一下8. github - 求助大神啊,win10 git clone error,折騰了幾天都不行,以前原本好好的,突然就這樣了9. html - vue里面:src在IE(9-11)下不顯示圖片10. css - 關于background-position百分比的問題?

網公網安備