从服务器获取图片并在客户端预览

Get image from server and preview it on client

所以我试图从服务器获取图像并在客户端上预览它,我现在可以检索图像,但我不知道如何在网页上异步预览它。

axios.get(link,{responseType:'stream'}).then(img=>{
// What i have to do here ?
}); 

谢谢。

首先,您需要获取响应类型为 arraybuffer 的图像。然后您可以将结果转换为 base64 字符串并将其分配为图像标签的 src。这是 React 的一个小例子。

import React, { Component } from 'react';
import axios from 'axios';

class Image extends Component {
  state = { source: null };

  componentDidMount() {
    axios
      .get(
        'https://www.example.com/image.png',
        { responseType: 'arraybuffer' },
      )
      .then(response => {
        const base64 = btoa(
          new Uint8Array(response.data).reduce(
            (data, byte) => data + String.fromCharCode(byte),
            '',
          ),
        );
        this.setState({ source: "data:;base64," + base64 });
      });
  }

  render() {
    return <img src={this.state.source} />;
  }
}

export default Image;