Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想为我的 Rails 3.2.13 应用程序中的某些文本字段配置任意最大显示长度。
我希望这个助手在缩写字符串的末尾创建一个省略号链接,然后在一个小弹出窗口中显示完整的文本字符串。是否有宝石已经做到了这一点,还是我需要自己动手?
您不需要宝石,请使用truncate:
truncate
truncate("Once upon a time in a world far far away", :length => 17) # => "Once upon a ti..."
apidock.com 上的文档