前端js如何使用 application/octet-stream形式传参
时间: 2024-01-25 22:02:53 浏览: 137
vue实现文件分割与合并
前端JS可以使用XMLHttpRequest对象来发送POST请求,并将请求头设置为'application/octet-stream',将请求体设置为二进制数据流。以下是一个示例代码:
```
const xhr = new XMLHttpRequest();
xhr.open('POST', 'your-url-here');
xhr.setRequestHeader('Content-Type', 'application/octet-stream');
const data = new Blob([your-binary-data-here]);
xhr.send(data);
```
其中,your-binary-data-here是你要发送的二进制数据流。你可以使用Blob对象来创建二进制数据流。
阅读全文