我想在控制器中调用操作并获取链接点击数据并根据数据弹出模式。到目前为止,我已经尝试了下面的代码,它没有加载数据。
<%= link_to image_tag("notif.png", :title=>"Notifications"), notificationsget_path, :remote => true,
:data => {:toggle=>"modal", :target=>"#notifmodal"}%>
请告诉我,因为我是Rails的新手。
答案 0 :(得分:-1)
你能试试这个吗
<%= link_to "Show", avail_index_path, "data-toggle" => "modal", "data-target" => "#dialogAvail", class: "showClass" %>