同一页面上多个用户的最新推文?
有没有办法在同一页面上显示四个用户的最新推文?我目前正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从源代码中查看这一行:jquery.tweet.js,第 129 行。
似乎 s.username 是一个数组,您可以用多个用户名填充它 iesusername = [user1, user2, user3] 等。离开如果您这样做,则查询为假。祝你好运 :)
Have a look at this line from the source: jquery.tweet.js, line 129.
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 :)