gpt4 book ai didi

javascript - 带有 graphql 请求的 FormData

转载 作者:行者123 更新时间:2023-11-30 20:35:27 26 4
gpt4 key购买 nike

我正在使用 graphql-request对于我前端部分的 graphQL 查询( react )。服务器端使用 express-graphql。我有一些想法可以在后端处理(您的建议也将不胜感激),但正在寻找如何处理前端部分。

是否可以在 graphql-request 中发送一个 FormData(在我的例子中是图像)?询问?有例子吗?

最佳答案

根据 their documentation ,这是格式:

const client = new GraphQLClient(endpoint, { headers: {} })
client.request(query, variables).then(data => console.log(data))

GraphQL 不容易处理图像上传,它可能会更容易 upload them elsewhere and send the image URL to your graphql server .

你可以这样做:

yourClient.request(query, { id:1, imgURL:'http://foobar.com' })
.then(data => doSomethingWithData(data))

关于javascript - 带有 graphql 请求的 FormData,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49899322/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com