gpt4 book ai didi

html - 矩形 customPOST 图像文件内容类型为 :multipart/form-data to NodeJS(Server)

转载 作者:太空宇宙 更新时间:2023-11-04 02:31:00 24 4
gpt4 key购买 nike

在 HTML 中:

我只是使用angularjs中的web-directive从网络摄像头视频中捕获图像快照,并将图像显示在canvas标签中,

<webcam on-stream="onStream(stream,video)" on-streaming="onSuccess(video)"></wevcam>
<canvas id="snapshot"></canvas>

在 Controller 中:

这是从 Canvas 预览图像(base64 img)转换图像文件的正确方法吗,

var canvas = document.querySelector("#snapshot");
var image = canvas.toDataURL("image/jpeg");

如何使用内容类型为 multipart/form-data 的 Restangular customPOST 将图像文件发布到服务器以及如何从服务器端获取此图像文件?

最佳答案

尝试从服务器获取文件:

    xmlhttp=new XMLHttpRequest();

xmlhttp.open("POST","url");
xmlhttp.setRequestHeader("Content-type", " multipart/form-data");
xmlhttp.setRequestHeader("Access-Control-Allow-Methods",'POST','GET');
xmlhttp.send();

关于html - 矩形 customPOST 图像文件内容类型为 :multipart/form-data to NodeJS(Server),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26773101/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com