使用button_to通过GET进行外部链接



作为测试,我同时使用了link_tobutton_to,但只有前者有效。对于后者,看起来参数没有被传递,因为我从Facebook收到一个错误,说没有client_id,而URL中肯定有。

链接到代码:

<%= link_to "test", @auth_url %>
<!-- rendered HTML -->
<a href="https://www.facebook.com/v2.0/dialog/oauth?client_id=XYZ...">test</a>

按钮至代码:

<%= button_to @auth_url, method: :get, class: "btn btn-block btn-lg btn-social btn-facebook", style: "color:white" do %>
   <i class="fa fa-facebook horiz"></i> Invite me with Facebook
<% end %>
<!-- rendered HTML -->
<form action="https://www.facebook.com/v2.0/dialog/oauth?client_id=XYZ..." class="button_to" method="get">
  <div>
    <button class="btn btn-block btn-lg btn-social btn-facebook" style="color:white" type="submit">
      <i class="fa fa-facebook horiz"></i> Invite me with Facebook
    </button>
  </div>
</form>

我想用button_to,因为我想要一个按钮。。。但如果没有办法让它发挥作用,我可以将链接设置为这样的样式。

谢谢!

在这种情况下,我发现在不同浏览器中设置按钮样式时存在很多问题,以至于我最终只使用了这样的Javascript:

$("#inviteme3").click(function() {
  var link_string = '<%= @auth_url %>';
  var decoded = link_string.replace(/&amp;/g, '&');
  location.href = decoded
  return false;
});

相关内容

  • 没有找到相关文章

最新更新