这里的问题相对简单,但我似乎无法弄明白。我有一个应用程序,用户提交一个get请求,然后给出一个包含结果的页面。在此页面上,用户可以登录Facebook与结果进行交互(评分,评论等)。但是,如何将用户连接到Facebook并将其保留在同一页面上。 (我不能在url中刷新get查询,因为每次都会返回不同的页面。)
换句话说,给出来自facebooker2 github的这段代码:
<%= fb_connect_async_js %>
<% if current_facebook_user %>
<%= "Welcome #{current_facebook_user.first_name} #{current_facebook_user.last_name}!" %>
or
<%= "Hello #{fb_name(current_facebook_user, :useyou => false)}!" # link to facebook profile %>
<%= fb_logout_link("Logout of fb", request.url) %><br />
<% else
# you must explicitly request permissions for facebook user fields.
# here we instruct facebook to ask the user for permission for our website
# to access the user's facebook email and birthday
%>
<%= fb_login_and_redirect('<your URL here>', :perms => 'email,user_birthday') %>
<% end %>
如何不将用户重定向到另一个页面(url为空白),并在用户登录facebook后自动执行if语句的第一部分。