如何在rails中使用truncate helper

时间:2013-11-22 07:02:28

标签: ruby-on-rails ruby ruby-on-rails-3

如何在rails视图中使用truncate helper来获取以下文本 我的要求是

  1. 在20个字母后截断。(长度= 20)
  2. 在链接悬停时,应显示全文
  3. html.erb

    <%= link_to sta.device_app.prog_ser.adsp.name, reports_revenue_index_path(:adsp_id => sta.device_app.adsp.id) %>
    

    我试过了。但我的想法没有成功。谢谢

1 个答案:

答案 0 :(得分:1)

我建议:

<%= link_to truncate(sta.device_app.prog_ser.adsp.name, :length => 20, :tooltip => sta.device_app.prog_ser.adsp.name), reports_revenue_index_path(:adsp_id => sta.device_app.adsp.id), title: sta.device_app.prog_ser.adsp.name %>