将图像转换为字符串并通过发布发送到Angular网站

时间:2019-05-23 11:27:03

标签: python node.js typescript post base64

我们拍摄一张图片,并使用base64将其转换为字符串。然后,我们通过Post将此字符串发送到我们的Angular网站。接收到的图像仅包含该图像的〜两行。其他部分似乎在转移中迷路了。

我们使用 res.write(data); 将数据发送到网站

我们将请求发送到相机计算机的IP:

    this.http.post('http://10.13.60.2:3000', this.dataJSON, {responseType: 'text'})
      .subscribe((data: any) => {
        this.output = data;
      });
    console.dir('send');
  }```

Is there perhaps a mistake in the responseType?

0 个答案:

没有答案