我正在使用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
}),
}),
});
请告知。
答案 0 :(得分:1)
感谢您的提问。目前上传文件的最佳方法是[将其附加到FormData并使用fetch将其发送到服务器](https://medium.com/@danielbuechele/file-uploads-with-graphql-and-apollo-5502bbf3941e)。基本上,您将无法在此处对文件本身进行缓存,但这是使用多部分请求处理在Scaphold上传文件的最佳方法。