在Angular 2+中压缩传出请求

时间:2018-08-21 05:58:47

标签: angular typescript compression gzip deflate

我想对Angular 4应用程序向API项目发送的POST和PUT JSON请求使用gzip或deflate压缩。

目前,我正在使用HttpClient发送请求。我尝试使用pako或zlib生成压缩内容,但是服务器返回的响应表明压缩算法的实现不正确。

我的POST TypeScript如下所示:

public post(url: string, content: any): Observable < any > {
  const fullUrl: string = `${HttpService.baseUrl}/${url}`;

  Logger.debug(`Beginning HttpPost invoke to ${fullUrl}`, content);

  // Optionally, deflate the input
  const toSend: any = HttpService.compressInputIfNeeded(content);

  return Observable.create((obs: Observer < any > ) => {
    this.client.post(fullUrl, toSend, HttpService.getClientOptions()).subscribe(
      (r: any) => {
        Logger.debug(`HttpPost operation to ${fullUrl} completed`, r);

        // Send the response along to the invoker
        obs.next(r);
        obs.complete();
      },
      (err: any) => {
        Logger.error(`Error on HttpPost invoke to ${fullUrl}`, err);

        // Pass the error along to the client observer
        obs.error(err);
      }
    );
  });
}

private static getClientOptions(): {
  headers: HttpHeaders
} {
  return {
    headers: HttpService.getContentHeaders()
  };
}

private static getContentHeaders(): HttpHeaders {
  let headers: HttpHeaders = new HttpHeaders({
    'Content-Type': 'application/json; charset=utf-8'
  });

  // Headers are immutable, so any set operation needs to set our reference
  if (HttpService.deflate) {
    headers = headers.set('Content-Encoding', 'deflate');
  }
  if (HttpService.gzip) {
    headers = headers.set('Content-Encoding', 'gzip');
  }

  return headers;
}

private static compressInputIfNeeded(content: any): string {
  const json: string = JSON.stringify(content);

  Logger.debug('Pako Content', pako);

  if (HttpService.deflate) {
    const deflated: string = pako.deflate(json);
    Logger.debug(`Deflated content`, deflated);

    return deflated;
  }

  if (HttpService.gzip) {
    const zipped: string = pako.gzip(json);
    Logger.debug(`Zipped content`, zipped);

    return zipped;
  }

  return json;
}

我尝试了各种缩小和压缩内容的排列,但是似乎没有任何效果。我还检查了Fiddler中的传出请求,并验证了Fiddler无法解释请求JSON。

我还验证了内容是否以Content-Type发送:application / json; charset = UTF-8和Content-Encoding:使用适当的Accept-Encoding值缩小。

在这一点上,我确定我正在做的事情是我没有想到的错误,或者我正在尝试做的事情超出了HttpClient允许我做的事情。

2 个答案:

答案 0 :(得分:2)

我自己已经开始工作了。

我认为问题可能出在您使用pako的方式上。

pako.gzip(obj)不会返回字符串,除非您显式传递该选项。它返回一个字节数组。 (特别是Uint8Array

默认的HttpClient会尝试将其转换为json字符串,这是错误的。我做了以下事情:

  const newHeaders: Headers = new Headers();
  newHeaders.append('Content-Encoding', 'gzip')
  newHeaders.set('Content-Type', 'application/octet-stream');

  var options = { headers: newHeaders, responseType: ResponseContentType.Json };

  var compressedBody = pako.gzip(JSON.stringify(body))

  client.post(url, compressedBody.buffer, options);

请注意以下几点:

  1. 需要为压缩字节数组正确设置Content-TypeContent-Encoding标头。
  2. .buffer对象上使用compressedBody属性。 HttpClient需要这种方式,以便知道它正在处理字节数组。
  3. 您的API必须足够聪明,才能将另一端的字节数组转换为json。默认情况下通常不会处理此问题。

答案 1 :(得分:-2)

您不必自己压缩任何内容,只需设置适当的标头,浏览器就会通过与服务器的协商过程自动执行此操作,如果服务器支持gzip编码,则浏览器将发送编码后的请求。