我将 Apollo 与 Scaphold.io 服务一起使用,并且为了向该服务写入 blob,我需要能够向请求正文添加其他选项。
完整的 Scaphold 示例可以在这里找到:https ://scaphold.io/docs/#uploading-files
但它做了这样的事情:
form.append("variables", JSON.stringify({
"input": {
"name": "Mark Zuck Profile Picture",
"userId": "VXNlcjoxMA==",
"blobFieldName": "myBlobField"
}
}));
// The file's key matches the value of the field `blobFieldName` in the variables
form.append("myBlobField", fs.createReadStream('./mark-zuckerberg.jpg'));
fetch("https://us-west-2.api.scaphold.io/graphql/scaphold-graphql", {
method: 'POST',
body: form
}).then(function(res) {
return res.text();
}).then(function(body) {
console.log(body);
});
它将 blobField 添加到请求正文的位置。
基于此,我需要将 blobFieldName 属性传递给变量,然后将传递给该属性的值与 blob 添加到请求正文中。但是,使用 Apollo 我无法添加到请求正文中。我尝试了以下操作,但是当我签入网络检查器时,请求正文中没有它:
export const withCreateCoverPhoto = graphql(CreateCoverPhoto, {
props: ({mutate}) => ({
createCoverPhoto: (name, file) => mutate({
variables: {
input: {
blobFieldName: name,
},
},
[name]: file
}),
}),
});
请指教。