4

我有一个功能模式链接,可以从我的视图中的某个页面点击:

<a href="#" data-toggle="modal" data-target="#manifesto-modal">Manifesto &amp; Rules</a>

除了可以在此页面上单击之外,我还希望它在重定向到此页面时默认显示。我还没有找到一个很好的方法来从控制器或其他地方对此进行编码,但无法想象它需要太多。输入表示赞赏!

4

2 回答 2

10

根据文档,您可以使用闪光灯(未经测试):

redirect_to your_path, flash: { manifesto_modal: true }

那么在你看来:

<% if flash[:manifesto_modal] %>
  // a script to display modal on document ready
<% end %>
于 2012-11-07T08:05:24.077 回答
0

我用这个 JavaScript 解决了这个问题。这可能不是最好的方法,我很想听听人们对此的想法:

  if ( window.location.pathname == "/edit_profile" ) {
    $('#manifesto-modal').modal('show');
  }
于 2012-11-07T17:07:18.837 回答