使用 JavaScript 应用程序中的 Rest API 将附件上传到 Azure DevOps Server
我正在寻找有关如何在将附件上传到 Azure DevOps Server 时生成请求正文的示例。查看文档 这里,它指出正文的内容应该是“[BINARY FILE CONTENT]”。正文的内容来自 URL(例如 https://someURL/images/abc.png)。我如何从 fetch(url) -> 获取要放入 POST 请求中以创建附件的二进制内容?
I'm looking for an example on how to generate the request body when uploading an attachment to Azure DevOps Server. Looking at the documentation here, it notes the content for the body should be "[BINARY FILE CONTENT]". The content of the body is coming from a URL (https://someURL/images/abc.png for example). How do I get from fetch(url) -> binary content to put in the POST request to create the attachment?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
找到了一个有效的解决方案。供参考的代码如下:
无论如何,对我来说,所有这一切的关键是
在 uploadAttachment 函数中为 POST 请求添加 ajax 设置。
Found a solution that works. For reference here's the code:
The key to all of this, for me anyway, was adding
to the ajax settings, for the POST request, in the uploadAttachment function.