如何使用redux-observable正确获取二进制图像?

时间:2017-08-02 01:50:06

标签: javascript rxjs microsoft-graph redux-observable

我正在尝试使用redux-observable来获取图像。

基于Microsoft Graph API,它返回所请求照片的二进制数据。

我使用Postman成功获取图像(它显示结果中的图像,因为它是二进制的)。

但是,当我尝试使用redux-observable时,响应我总是null responseType 始终是json无论我为内容类型提供的内容如image/jpegtext/plainapplication/json

export const getAvatarEpic = (action$, store) =>
  action$
    .ofType(GET_AVATAR)
    .mergeMap(action =>
      ajax
        .get(
          'https://graph.microsoft.com/v1.0/me/photo/$value',
          {
            // 'Content-Type': 'image/jpeg',
            'Authorization': 'Bearer ' + myToken
          }
        )
        .do(res => console.log(res))  // <- the result
        .map(getAvatarSucceed)
        .catch(getAvatarFailed)
    );

这是我得到的。也许我应该使用其他东西而不是ajax.get

{
  "originalEvent": {
    "isTrusted": true
  },
  "xhr": {},
  "request": {
    "async": true,
    "crossDomain": false,
    "withCredentials": false,
    "headers": {
      "Authorization": "Bearer hereIsMyToken",
      "X-Requested-With": "XMLHttpRequest"
    },
    "method": "GET",
    "responseType": "json",
    "timeout": 0,
    "url": "https://graph.microsoft.com/v1.0/me/photo/$value"
  },
  "status": 200,
  "responseType": "json",
  "response": null
}

2 个答案:

答案 0 :(得分:1)

使用Angular 4构建Graph explorer时,遇到了同样的问题。在我们的情况下,在请求图片时,我们必须将dollar参数设置为responseType而不是默认值。

https://github.com/microsoftgraph/microsoft-graph-explorer/blob/master/src/app/graph-service.ts#L54

ArrayBuffer

然后在处理响应时,我们获取blob URL并设置图像元素的src:

case "GET": // for all JSON requests to Graph
        return this.http.get(query, {headers: requestHeaders}).toPromise();
case "GET_BINARY": // when fetching images
        return this.http.get(query, {responseType: ResponseContentType.ArrayBuffer, headers : requestHeaders}).toPromise();

看起来 let blob = new Blob( [ result.arrayBuffer() ], { type: "image/jpeg" } ); let imageUrl = window.URL.createObjectURL( blob ); const imageResultViewer = <HTMLImageElement>document.getElementById("responseImg"); imageResultViewer.src = imageUrl; 具有responseType属性,所以我建议更改它,但我不是RxJS专家!有关Rx.DOM.ajax的更多信息,请访问: https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest/responseType

最终代码:

XMLHttpRequest.responseType

答案 1 :(得分:1)

我想首先确保redux-observable和RxJS是分开的东西。这个问题实际上是一个RxJS问题,因为几乎所有你遇到的问题(即使使用redux-observable)也是如此,因为redux-observable很小并且几乎把所有东西都推迟到惯用的Rx。这一点非常重要,因为在提问时如果您提出问题并将其简称为Rx问题,您会发现更多的帮助和资源,因为它是一个更大的社区。希望这有帮助!

如果您使用RxJS v5的内置ajax实用程序,则需要使用常规ajax()帮助程序,而不是简写ajax.get()

然后,您可以提供responseType: 'arraybuffer'以将图像作为二进制数据:

export const getAvatarEpic = (action$, store) =>
  action$
    .ofType(GET_AVATAR)
    .mergeMap(action =>
      ajax({
        url: 'https://graph.microsoft.com/v1.0/me/photo/$value',
        headers: {
          'Authorization': 'Bearer ' + myToken
        },
        responseType: 'arraybuffer'
      })
      .do(res => console.log(res))  // <- the result
      .map(getAvatarSucceed)
      .catch(getAvatarFailed)
    );

由于这个问题实际上与redux-observable无关,这里有一个工作示例,演示如何获取二进制数据,然后用它创建<img>

https://jsbin.com/mimijot/edit?js,output

import { ajax } from 'rxjs/observable/dom/ajax';

ajax({
  url: 'https://proxy.apisandbox.msdn.microsoft.com/svc?url=https%3A%2F%2Fgraph.microsoft.com%2Fv1.0%2Fme%2Fphoto%2F%24value',
  headers: { 'Authorization': 'Bearer {token:https://graph.microsoft.com/}' },
  responseType: 'arraybuffer'
})
  .subscribe(res => {
    console.log(res);
    const buffer = res.response;
    const blob = new Blob([buffer], { type: 'image/jpeg' });
    const url = URL.createObjectURL(blob);
    const img = document.createElement('img');

    img.src = url;
    document.body.appendChild(img);
  });