我在我的app请求js上发送以下参数:
= link_to_function _("Invite Friends to Blabloo"),
"FB.init({appId: '#{Facebook::APP_ID}', xfbml: true, cookie: true});FB.ui({ method: 'apprequests',
message: 'Invite Friends to Blabloo...',
data: '{\"draw_token\":\"#{@draw.token}\",\"invitation_token\":\"#{current_kid.invitation_token}\"}',
exclude_ids: #{@draw.get_invited_ids_for current_kid}},
handle_fb_callback);", class: 'btn button btn-primary pull-right'
如你所见,我发送了两个参数:
draw_token和invitation_token
现在,如何使用Koala在我的家庭控制器的索引操作中获取这些参数的值。
我得到这样的网址:
我知道我必须使用params [:request_ids]获取request_ids,但后来我不知道如何处理考拉和这个值。
提前感谢您的帮助。