【发布时间】:2024-04-23 04:50:02
【问题描述】:
我无法用this question 的答案解决这个问题,因为代码存在差异。
我想从回调中返回一个对象。当我运行以下代码时,body 对象的日志看起来符合预期。它似乎是正确的 JSON 对象,其中包含我想要从服务器获得的响应:名称、电子邮件、网站等。
但result 对象似乎包含有关请求本身而不是响应对象的信息。
如何返回body 对象,以便我可以从result 变量访问它?
const request = require('request'); // npm i request -s
module.exports = async config => {
...
const result = await request.get( url, options,
( error, response, body, ) => {
console.log( 'body', body, ); // I want the other log to look like this log.
return body;
}
);
console.log( 'result', result, ); // I want this log to look like the above log.
// In other words, I want the below line to be the name, email, website JSON object
// contained in the body
return result;
}
这就是我想要的result。
body {
"name": "foo",
"email": "foo@example.com",
"website": "www.example.com",
...
}
这是我实际从result 得到的。
result Request {
_events: [Object: null prototype] {
error: [Function: bound ],
complete: [Function: bound ],
pipe: [Function]
},
_eventsCount: 3,
_maxListeners: undefined,
uri: Url {
protocol: 'https:',
slashes: true,
auth: null,
host: 'api.example.com',
port: 443,
hostname: 'api.example.com',
hash: null,
},
callback: [Function],
method: 'GET',
readable: true,
writable: true,
explicitMethod: true,
_qs: Querystring {
request: [Circular],
lib: { formats: [Object], parse: [Function], stringify: [Function] },
useQuerystring: undefined,
parseOptions: {},
stringifyOptions: {}
},
_auth: Auth {
request: [Circular],
【问题讨论】:
-
request.get()不返回承诺,因此await对它没有任何用处。如果我每次回答这个问题时都有五分钱,我会有很多五分钱。await没有魔法。它所做的只是等待一个承诺。如果你不给它一个承诺,它什么也做不了。
标签: javascript node.js asynchronous callback async-await