返回介绍

WWWForm.AddBinaryData 添加二进制数据

发布于 2019-12-18 15:38:47 字数 1104 浏览 1365 评论 0 收藏 0

JavaScript => AddBinaryData(fieldName: string, contents: byte[], fileName: string = null, mimeType: string = null): void;
C# => void AddBinaryData(string fieldName, byte[] contents, string fileName = null, string mimeType = null);

Description 描述

Add binary data to the form.

添加二进制数据到表单。

Use this function to upload files and images to a web server application. Note that the data is read from the contents of byte array and not from a file. The fileName parameter is for telling the server what filename to use when saving the uploaded file.

使用这个函数上传文件和图片到web服务器,注意数据从字节数组中读取内容而不是从一个文件中读取。fileName参数用来告诉服务器用什么文件名来保存上传的文件。

If mimeType is not given and first 8 bytes of the data match PNG format header, then the data is sent with “image/png” mimetype. Otherwise it is sent with “application/octet-stream” mimetype.

如果mimeType没有给出,并且数据的前8字节与PNG格式头相同,然后数据用“image/png”mimetype发送,否则它将用“application/octet-stream”mimetype发送。

WWWForm

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文