gpt4 book ai didi

javascript - 无法从异步函数检索返回的对象

转载 作者:行者123 更新时间:2023-11-30 09:12:33 24 4
gpt4 key购买 nike

我正在努力将推文函数的响应值记录到控制台,但无论我做什么,即使推文已发布,该对象仍会返回空值。

const Twitter = require('twitter');
const dotenv = require('dotenv');
dotenv.config();

const client = new Twitter({
consumer_key: process.env.TWITTER_CONSUMER_KEY_TEST,
consumer_secret: process.env.TWITTER_CONSUMER_SECRET_TEST,
access_token_key: process.env.TWITTER_ACCESS_TOKEN_KEY_TEST,
access_token_secret: process.env.TWITTER_ACCESS_TOKEN_SECRET_TEST
});

const tweet = (message, id = '0') => {
let postRes = {};
let status = {};
if(id && id.length > 4) {
status = {
in_reply_to_status_id: id,
status: message,
};
} else {
status = {
status: message,
};
}
client.post('statuses/update', status)
.then((tweet, response) => {
console.log('id', tweet.id); // Tweet body.
console.log('id_str', tweet.id_str); // Tweet body.
console.log('text', tweet.text); // Tweet body.
postRes.tweet = tweet.text,
postRes.id = tweet.id_str;
return postRes;
})
.catch((error) => {
console.log('ERR');
throw error;
});
// console.log('POSTRES', postRes);
return postRes;
};

async function msg() {
const tweeted = await tweet('this is_a__posts_async', '');
console.log('TWEETED', tweeted);
console.log('MESSAGE', tweeted.tweet);
console.log('ID', tweeted.id);
}

msg();

在这里,我希望语句 console.log('TWEETED', tweeted); 返回一个包含两个元素的对象,即推文文本和发布的推文 ID。然而,尽管将它包装在一个异步函数中,它返回空。

最佳答案

尝试转动您的 tweet功能async功能如下所示,或者您可以从 tweet 返回整个 promise 本身功能。

async function tweet(message, id = '0') {
let postRes = {};
let status = {};
let tweet;
if(id && id.length > 4) {
status = {
in_reply_to_status_id: id,
status: message,
};
} else {
status = {
status: message,
};
}
try{
tweet = await client.post('statuses/update', status)
}
catch(error){
console.log('ERR: ', error)
throw error
}
console.log('id', tweet.id); // Tweet body.
console.log('id_str', tweet.id_str); // Tweet body.
console.log('text', tweet.text); // Tweet body.
postRes.tweet = tweet.text,
postRes.id = tweet.id_str;
return postRes;

};

async function msg() {
const tweeted = await tweet('this is_a__posts_async', '');
console.log('TWEETED', tweeted);
console.log('MESSAGE', tweeted.tweet);
console.log('ID', tweeted.id);
}

msg();

返回整个 promise 。

const Twitter = require('twitter');
const dotenv = require('dotenv');
dotenv.config();

const client = new Twitter({
consumer_key: process.env.TWITTER_CONSUMER_KEY_TEST,
consumer_secret: process.env.TWITTER_CONSUMER_SECRET_TEST,
access_token_key: process.env.TWITTER_ACCESS_TOKEN_KEY_TEST,
access_token_secret: process.env.TWITTER_ACCESS_TOKEN_SECRET_TEST
});

const tweet = (message, id = '0') => {
let postRes = {};
let status = {};
if(id && id.length > 4) {
status = {
in_reply_to_status_id: id,
status: message,
};
} else {
status = {
status: message,
};
}
return client.post('statuses/update', status)
.then((tweet, response) => {
console.log('id', tweet.id); // Tweet body.
console.log('id_str', tweet.id_str); // Tweet body.
console.log('text', tweet.text); // Tweet body.
postRes.tweet = tweet.text,
postRes.id = tweet.id_str;
return postRes;
})
.catch((error) => {
console.log('ERR');
throw error;
});
// console.log('POSTRES', postRes);
// return postRes;
};

async function msg() {
const tweeted = await tweet('this is_a__posts_async', '');
console.log('TWEETED', tweeted);
console.log('MESSAGE', tweeted.tweet);
console.log('ID', tweeted.id);
}

msg();

谢谢 Bergi 指出范围问题。

关于javascript - 无法从异步函数检索返回的对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57488409/

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