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.
有没有办法在同一页面上显示来自四个用户的最新推文?我目前正在使用来自Sea of Clouds的代码来显示来自一位用户的最新推文,并且效果很好。我想知道我是否可以以某种方式调整它以显示多个用户的最新推文。
从源代码中查看这一行:jquery.tweet.js,第 129 行。
var query = (s.query || 'from:'+s.username.join(' OR from:'));
似乎 s.username 是一个数组,您可以使用多个用户名 iesusername = [user1, user2, user3] 等填充它。如果您这样做,请使查询变为虚假。祝你好运 :)