Rails 4:在link_to helper中添加多个数据切换

时间:2015-11-06 01:55:18

标签: ruby-on-rails twitter-bootstrap ruby-on-rails-4 bootstrap-modal link-to

在我的Rails 4应用程序中,在我的视图中,我使用了很多link_to个助手。

当我需要向链接添加Bootstrap tooltip时,我会这样做:

<%= link_to "Link text", model_path(@model), "data-toggle" => "tooltip", "data-placement" => "bottom", "title" => "Model View" %>

而且,当我需要在链接中添加Bootstrap modal时,我会这样做:

<%= link_to  "Link text", model_path(@model), :remote => true, 'data-toggle' =>  "modal", 'data-target' => '#modal-window' %>

现在,在我的应用中的某个特定位置,我需要在同一个链接上添加 BOTH 一个tooltip AND 一个modal

我找到了两个Stack Overflow问题herethere,它们解释了如何在Rails中添加多个data-toggle属性,但没有一个提供实现此功能的解决方案 INSIDE 一个link_to帮助者。

这实际上是可能的吗?

1 个答案:

答案 0 :(得分:1)

我认为你不能这样做,但是你可以将你的链接包裹在<div><span>中并将工具提示放在那里。