chengjing
Results
1
issues of
chengjing
v4.2.0 使用JPush.js 的send(callback) 方式有问题,res不会携带statusCode, 所以一直会触发error,建议调整一下 Request2.js ```js resp.on('data', (res) => { if (res instanceof Buffer) { res = res.toString(); if (resp.headers['content-type'].indexOf('application/json') > -1) res = JSON.parse(res); } if (client.isDebug) debug(res);...