作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想调用 API,获取 json 数据并将其设置为 Graphql 中的解析器查询。到目前为止,我设法使用 Graphql 服务器并调用了 API。到目前为止,这是我的代码
//resolvers.js
//var fetch = require('node-fetch');
var request = require("request");
var options = { method: 'GET',
url: 'http://mydomain.con/index.php/rest/V1/products/24-MB01',
headers:
{ 'postman-token': 'mytoken',
'cache-control': 'no-cache',
'content-type': 'application/json',
authorization: 'Bearer mytoken' } };
const links = request(options, function (error, response, body) {
if (error) throw new Error(error);
//body = json data
//console.log(body);
});
module.exports = {
Query: {
//set data to Query
allLinks: () => links,
},
};
我不知道如何将包含 json 数据的 body 参数设置为 Query。我在“http://localhost/src/apicall.php”上也有相同的数据,但这不适用于节点获取(或者我犯了错误)。 Api 来自 magento2。
最佳答案
你很接近!
您现在正在做的是在您的应用程序启动时立即发送 links
请求。你不想要那个;您想在 GraphQL 中请求 allLinks
字段时发送请求。
所以您需要在 allLinks
字段中有一个向您的 API 发出请求并返回响应的函数。
如果您在 allLinks
字段中返回一个 Promise,它将等待完成以使用返回值作为答案。
所以,把它们放在一起:
...
const getAllLinks = () => {
return new Promise((resolve, reject) => {
request(options, function (error, response, body) {
if (error) reject(error);
else resolve(body);
});
});
};
module.exports = {
Query: {
//set data to Query
allLinks: getAllLinks,
},
};
关于javascript - 如何将 API 数据提取到 Graphql 模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47303419/
我是一名优秀的程序员,十分优秀!