获取功能之外的推文

时间:2018-09-27 20:46:31

标签: javascript node.js

这是我的代码:

var stream = T.stream('statuses/filter', {follow: SOME_ID});
var tweetToReply;

stream.on('tweet', function (tweet) {
    tweetToReply = tweet.text;
});

console.log(tweetToReply); // getting undefined

我想做的是能够在tweetToReply函数之外使用stream.on变量。有可能吗?因为我需要在函数之外使用`tweet.text'。

0 个答案:

没有答案