nodejs request模块gzip response的解压问题

参看:https://github.com/mikeal/request/issues/747

这个解决方法太蛋疼了,原来需要在request的options参数中增加一个:

 encoding : null  // it is very import!!

这才能够正常使用gzip来解压数据。

你可能感兴趣的:(request,GZip,nodejs)