facebook_session.user.friends_with_this_app.map(&:id).join(“,”);我怎样才能在 Facebooker2 中做这样的事情

发布于 2024-10-20 19:34:14 字数 502 浏览 2 评论 0原文

<%= fb_multi_friend_selector("Invite your friends to check out this site", :showborder => true,:exclude_ids => facebook_session.user.friends_with_this_app.map(&:id).join(","), :condensed => false) %>

正如您在上面看到的, :exclude_ids => facebook_session.user.friends_with_this_app.map(&:id).join(","), 此行可以删除曾经是您的好友并加入其中列出的应用程序的好友。最近,我升级到了Facebooker2。我怎样才能在 Facebooker2 中做同样的事情?

Facebookers 和 Mogli 中没有名为 Friends_with_this_app 的函数。

<%= fb_multi_friend_selector("Invite your friends to check out this site", :showborder => true,:exclude_ids => facebook_session.user.friends_with_this_app.map(&:id).join(","), :condensed => false) %>

as you see above , :exclude_ids => facebook_session.user.friends_with_this_app.map(&:id).join(","), this line can remove the friends who had been a friends of you and joined in the app listed there. Recently, I upgraded to Facebooker2. how can I do the same thing in Facebooker2?

there is no function named friends_with_this_app in Facebookers and Mogli.

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

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

发布评论

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

评论(1

疑心病 2024-10-27 19:34:14

我一直无法找到解决此问题的一步解决方案。但是你可以这样做:

<% every_friend = current_facebook_user.friends.map(&:id) %>
# replace user with your class and fb_id with your user's facebook id field name
<% app_friends = User.where( :fb_id => every_friend ).map(&:id) %>

然后你的代码

<%= fb_multi_friend_selector("Invite your friends to check out this site", :showborder => true,:exclude_ids => app_friends, :condensed => false) %>

I haven't been able to figure out a one step solution to this. However you could do:

<% every_friend = current_facebook_user.friends.map(&:id) %>
# replace user with your class and fb_id with your user's facebook id field name
<% app_friends = User.where( :fb_id => every_friend ).map(&:id) %>

then your code

<%= fb_multi_friend_selector("Invite your friends to check out this site", :showborder => true,:exclude_ids => app_friends, :condensed => false) %>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文