Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 node-red 上构建了一个小项目,以使用 Twitter Source 节点检索推文。
我只是获取推文并将它们放入 Cloudant 数据库。
我现在想要的是只选择英文的推文。有人可以帮忙吗?
Twitter 节点发出的消息有一个名为 lang 的字段,您可以使用它来过滤。
在 twitter 节点和 cloudant 节点之间添加一个函数节点,如下所示:
if (msg.lang === 'en') { return msg; } else { return null; }
这应该扔掉任何没有英文的推文