我正在使用Meteor使用Twitters API来删除带有特定主题标签的推文。目前我正在使用我的姓氏Cusack,请看现场演示:https://tweetmonitor.io。
自从我开始抓取以来,我只能得到推文的总数,但我想要按分钟存储计数。然后我可以计算平均值等。
有没有人有任何想法?到目前为止,这是我的代码:
Meteor.subscribe("tweets");
Template.tweetsList.helpers({
// We need to make sure the count is of the current minute
tweetscount: function()
{
// Let's count the tweets
function tweetCount()
{
return Tweets.find().count();
}
return tweetCount();
}
});
提前谢谢!
答案 0 :(得分:0)
你的问题非常广泛,所以答案非常广泛。