同一页面上多个用户的最新推文?

发布于 2024-11-04 02:30:59 字数 165 浏览 1 评论 0原文

有没有办法在同一页面上显示四个用户的最新推文?我目前正在使用 Sea of​​ Clouds 中的代码来显示一位用户的最新推文,效果非常好。我想知道是否可以调整它以某种方式为多个用户显示最新的推文。

Is there a way to display the latest tweets from four users on the same page? I'm currently using the code from Sea of Clouds to display the latest tweet from one user and it works excellently. I'm wondering if maybe I can tweak that somehow to display the latest tweet for more than one user.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

迟月 2024-11-11 02:30:59

从源代码中查看这一行:jquery.tweet.js,第 129 行。

var query = (s.query || 'from:'+s.username.join(' OR from:'));

似乎 s.username 是一个数组,您可以用多个用户名填充它 iesusername = [user1, user2, user3] 等。离开如果您这样做,则查询为假。祝你好运 :)

Have a look at this line from the source: jquery.tweet.js, line 129.

var query = (s.query || 'from:'+s.username.join(' OR from:'));

It seems that s.username is an array and that you can populate it with multiple user names i.e. s.username = [user1, user2, user3] etc. Leave the query falsy if you do this. Good luck :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文