我如何在 facebooker2 中使用 fb_server_fbml 辅助方法?

发布于 2024-10-27 02:40:10 字数 131 浏览 0 评论 0原文

我正在使用 Rails 3 和 facebooker2 开发 Facebook 应用程序 我找不到任何有关如何使用 fb_server_fbml 辅助方法的示例。
其参数中的“proc”是什么。谁能给我提供示例代码?

谢谢

I am developing a facebook app using rails 3 and facebooker2
i cannot find any example on how to use fb_server_fbml helper method.
what is "proc" in its paramter. Can anyone provide me with sample code?

Thanks

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

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

发布评论

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

评论(1

愁杀 2024-11-03 02:40:10

&proc 参数用作插入在 标记之间的内容块。您可以在此处了解有关块助手以及 Rails 2.3 和 Rails 3 之间差异的更多信息:Rails 3 中的块助手< /a>

所以,尝试这样的操作:

<% fb_server_fbml do %>
  <%#Insert here your content %>
<% end %>

如果您想使用请求表单,请尝试以下操作:

<% fb_server_fbml do %>
  <% fb_request_form("Your app name","http://www.example.com/callback","Try this out!") do %>
    <%= fb_multi_friend_selector("Invite your friends:", {:rows => 3}) %>
  <% end %>
<% end %>

The &proc parameter is used as a content block that is inserted between the <fb:serverFbml> tags. You can learn more about block helpers and differences between Rails 2.3 and Rails 3 here: Block Helpers in Rails 3

So, try something like this:

<% fb_server_fbml do %>
  <%#Insert here your content %>
<% end %>

If you want to use the request form, try the following:

<% fb_server_fbml do %>
  <% fb_request_form("Your app name","http://www.example.com/callback","Try this out!") do %>
    <%= fb_multi_friend_selector("Invite your friends:", {:rows => 3}) %>
  <% end %>
<% end %>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文