我有一个功能模式链接,可以从我的视图中的某个页面点击:
<a href="#" data-toggle="modal" data-target="#manifesto-modal">Manifesto & Rules</a>
除了可以在此页面上单击之外,我还希望它在重定向到此页面时默认显示。我还没有找到一个很好的方法来从控制器或其他地方对此进行编码,但无法想象它需要太多。输入表示赞赏!
我有一个功能模式链接,可以从我的视图中的某个页面点击:
<a href="#" data-toggle="modal" data-target="#manifesto-modal">Manifesto & Rules</a>
除了可以在此页面上单击之外,我还希望它在重定向到此页面时默认显示。我还没有找到一个很好的方法来从控制器或其他地方对此进行编码,但无法想象它需要太多。输入表示赞赏!
根据文档,您可以使用闪光灯(未经测试):
redirect_to your_path, flash: { manifesto_modal: true }
那么在你看来:
<% if flash[:manifesto_modal] %>
// a script to display modal on document ready
<% end %>
我用这个 JavaScript 解决了这个问题。这可能不是最好的方法,我很想听听人们对此的想法:
if ( window.location.pathname == "/edit_profile" ) {
$('#manifesto-modal').modal('show');
}