我如何在 facebooker2 中使用 fb_server_fbml 辅助方法?
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
&proc
参数用作插入在
标记之间的内容块。您可以在此处了解有关块助手以及 Rails 2.3 和 Rails 3 之间差异的更多信息:Rails 3 中的块助手< /a>所以,尝试这样的操作:
如果您想使用请求表单,请尝试以下操作:
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 3So, try something like this:
If you want to use the request form, try the following: