- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我正在使用 JavaScript 通过他们的 REST API 与 Salesforce 进行通信。他们希望 multipart/form-data 内容类型的请求正文格式非常具体:
--boundary_string
Content-Disposition: form-data; name="entity_document";
Content-Type: application/json
{
"Description" : "Marketing brochure for Q1 2011",
"Keywords" : "marketing,sales,update",
"FolderId" : "005D0000001GiU7",
"Name" : "Marketing Brochure Q1",
"Type" : "pdf"
}
--boundary_string
Content-Type: application/pdf
Content-Disposition: form-data; name="Body"; filename="2011Q1MktgBrochure.pdf"
Binary data goes here.
--boundary_string--
见 https://www.salesforce.com/us/developer/docs/api_rest/Content/dome_sobject_insert_update_blob.htm
通过下面的代码,我得到的请求正文非常接近他们预期的格式,除了它在第一个边界中不包含内容类型 (application/json)。
// Prepare binary data
var byteString = window.atob(objectData.Body);
var ab = new ArrayBuffer(byteString.length);
var ia = new Uint8Array(ab);
for (var i = 0; i < byteString.length; i++) {
ia[i] = byteString.charCodeAt(i);
}
var bb = new Blob([ab], { "type": "image/png" });
// Setup form
var formData = new FormData();
formData.append("entity_attachment", JSON.stringify({ data: '' }));
formData.append("Body", bb);
var request = new XMLHttpRequest();
request.open("POST", myurl);
request.send(formData);
此代码不会在第一个边界中放置序列化 JSON 的内容类型。这是需要的;事实上,通过 Fiddler,我能够确认当 Content-Type 文本存在于第一个边界部分时,请求处理得很好。
我尝试执行以下操作,它将序列化的 JSON 视为二进制数据,并具有提供内容类型的能力:
formData.append("entity_attachment", new Blob([JSON.stringify({ data: '' })], { "type": "application/json"}));
这会产生以下 HTTP:
Content-Disposition: form-data; name="entity_attachment"; filename="blob"
Content-Type: application/json
...
不幸的是,Salesforce 服务器给出了以下错误消息:
Cannot include more than one binary part
我能想到的将数据格式化为特定 Salesforce 正文格式的最后一种方法是手动构建请求正文;我尝试这样做,但我觉得尝试连接二进制文件很短,我不确定如何连接到一个字符串中。
我正在寻找任何建议以使我的请求正文与 Salesforce 的匹配。
最佳答案
This answer展示了如何手动构建包含二进制文件并绕过浏览器完成的标准 UTF-8 编码的多部分/表单请求主体。这是通过将整个请求作为 ArrayBuffer 传递来完成的。
这是我用来解决问题的代码(如 this answer 中所示):
// {
// Body: base64EncodedData,
// ContentType: '',
// Additional attachment info (i.e. ParentId, Name, Description, etc.)
// }
function uploadAttachment (objectData, onSuccess, onError) {
// Define a boundary
var boundary = 'boundary_string_' + Date.now().toString();
var attachmentContentType = !app.isNullOrUndefined(objectData.ContentType) ? objectData.ContentType : 'application/octet-stream';
// Serialize the object, excluding the body, which will be placed in the second partition of the multipart/form-data request
var serializedObject = JSON.stringify(objectData, function (key, value) { return key !== 'Body' ? value : undefined; });
var requestBodyBeginning = '--' + boundary
+ '\r\n'
+ 'Content-Disposition: form-data; name="entity_attachment";'
+ '\r\n'
+ 'Content-Type: application/json'
+ '\r\n\r\n'
+ serializedObject
+ '\r\n\r\n' +
'--' + boundary
+ '\r\n'
+ 'Content-Type: ' + attachmentContentType
+ '\r\n'
+ 'Content-Disposition: form-data; name="Body"; filename="filler"'
+ '\r\n\r\n';
var requestBodyEnd =
'\r\n\r\n'
+ '--' + boundary + '--';
// The atob function will decode a base64-encoded string into a new string with a character for each byte of the binary data.
var byteCharacters = window.atob(objectData.Body);
// Each character's code point (charCode) will be the value of the byte.
// We can create an array of byte values by applying .charCodeAt for each character in the string.
var byteNumbers = new Array(byteCharacters.length);
for (var i = 0; i < byteCharacters.length; i++) {
byteNumbers[i] = byteCharacters.charCodeAt(i);
}
// Convert into a real typed byte array. (Represents an array of 8-bit unsigned integers)
var byteArray = new Uint8Array(byteNumbers);
var totalRequestSize = requestBodyBeginning.length + byteArray.byteLength + requestBodyEnd.length;
var uint8array = new Uint8Array(totalRequestSize);
var i;
// Append the beginning of the request
for (i = 0; i < requestBodyBeginning.length; i++) {
uint8array[i] = requestBodyBeginning.charCodeAt(i) & 0xff;
}
// Append the binary attachment
for (var j = 0; j < byteArray.byteLength; i++, j++) {
uint8array[i] = byteArray[j];
}
// Append the end of the request
for (var j = 0; j < requestBodyEnd.length; i++, j++) {
uint8array[i] = requestBodyEnd.charCodeAt(j) & 0xff;
}
return $j.ajax({
type: "POST",
url: salesforceUrl,
contentType: 'multipart/form-data' + "; boundary=\"" + boundary + "\"",
cache: false,
processData: false,
data: uint8array.buffer,
success: onSuccess,
error: onError,
beforeSend: function (xhr) {
// Setup OAuth headers...
}
});
};
关于javascript - 如何在不使用 Blob 的情况下向多部分请求添加内容类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27073126/
我正在尝试从 Azure 容器中删除 blob。我能够连接到它并列出此问题中代码后面的所有 blob:Upload and Delete Azure Storage Blob using azure-
我正在尝试从 Azure 容器中删除 blob。我能够连接到它并列出此问题中代码后面的所有 blob:Upload and Delete Azure Storage Blob using azure-
运行我的 azure 函数(用于读取 azure blob 存储)后出现错误。 错误是 ID 0dad768d-36d4-4c1a-85ae-2a5122533b3c fail: Func
运行我的 azure 函数(用于读取 azure blob 存储)后出现错误。 错误是 ID 0dad768d-36d4-4c1a-85ae-2a5122533b3c fail: Func
我正在使用 C# 控制台应用程序 (.NET Core 3.1) 从 Azure Blob 存储读取大量图像文件并生成这些图像的缩略图。新图像将保存回 Azure,并将 Blob ID 存储在我们的数
我没有在网上看到任何有关如何获取位于 BlobContainerClient 内特定目录内的所有 blob 的示例。 以前,我使用的是 Microsoft.Azure.Storage 软件包,但这些软
我正在使用 C# 控制台应用程序 (.NET Core 3.1) 从 Azure Blob 存储读取大量图像文件并生成这些图像的缩略图。新图像将保存回 Azure,并将 Blob ID 存储在我们的数
我没有在网上看到任何有关如何获取位于 BlobContainerClient 内特定目录内的所有 blob 的示例。 以前,我使用的是 Microsoft.Azure.Storage 软件包,但这些软
我正在编写一些代码,允许用户使用麦克风录制自己的声音,然后将录音上传到 Azure Blob 存储。 为了录制音频,我使用类似于下面的代码 let recordedBlobs = []; this.m
当前使用:https://github.com/Azure/azure-sdk-for-go 概述:我当前正在从 azure blob 存储中下载一个 blob,解析该 blob,然后将转录的 blo
正在观看 this video about how to design Tinder ,在 06:50 提出了关于文件与 BLOBS 的观点。 我想知道大二进制文件和 BLOB(二进制大对象)之间有什
目前我有 hibernate JPA HSQLDB 来自动创建我的数据库表。 如何告诉 JPA 或 Hibernate 将字符串保存为 clob/blob 字段?即一个很长的字符串。到目前为止我找不
我有一个一维 NumPy 数组,其中包含一些“坏”值。我想剔除它们。 每个坏值的邻居只是“顽皮”,但我也想剔除它们。 对不良值的可靠测试是询问: arr<0.1 但是,(我能想到的)对于顽皮值的唯一可
查看有关获取 Blob 和获取 Blob 属性的 MSDN 文档。两个请求看起来相同 "https://myaccount.blob.core.windows.net/mycontainer/mybl
我有 2 个 Blob 存储,一个在 eastus,一个在 canadaeast,我想将一个 .vhd 从 eastus 复制到 canadaeast。我去了 eastus,在我想要复制的 blob
所以场景如下: 我有多个 Web 服务实例,用于将 blob 数据写入 Azure 存储。我需要能够根据收到的时间将 blob 分组到容器(或虚拟目录)中。偶尔(最坏的情况是每天)旧的 blob 会被
在 Azure Blobstorage 中,我有 100 个 Blob,但我只想列出前 10 个 Blob。我该怎么做? 我写的{maxResults:1}没有任何效果,它仍然列出了我所有的 Blob
我们当前的代码使用 Azure SDK 1.8,为了生成共享访问签名,它将首先调用 CloudBlobContainer.GetBlobReference(),然后调用 CloudBlob.GetSh
我有大量文件存储在公共(public) Azure blob 容器中,所有这些文件都通过我的 ASP.NET MVC Web 应用程序中的 HTML 直接引用。例如,blob 存储中一个图像的路径如下
我有一个 NodeJS 后端,它使用 Microsoft 的官方 Blob 存储库 (@azure/storage-blob) 来管理我的 Blob 存储: https://www.npmjs.com
我是一名优秀的程序员,十分优秀!