Rails truncate helper with link as omit text

时光怂恿深爱的人放手 提交于 2019-12-20 12:32:53

问题


I'm quite long description that I want to truncate using truncate helper. So i'm using the:

truncate article.description, :length => 200, :omission => ' ...'

The problem is that I want to use more as a clickable link so in theory I could use this:

truncate article.description, :length => 200, :omission => "... #{link_to('[more]', articles_path(article)}"

Omission text is handled as unsafe so it's escaped. I tried to make it html_safe but it didn't work, instead of link [more] my browser is still showing the html for that link.

Is there any way to force truncate to print omission link instead of omission text?


回答1:


With Rails 4, you can/should pass in a block for the link:

truncate("Once upon a time in a world far far away", 
  length: 10, 
  separator: ' ', 
  omission: '... ') {     
    link_to "Read more", "#" 
}



回答2:


I would suggest doing this on your own in a helper method, that way you'll have a little more control over the output as well:

def article_description article
  output = h truncate(article.description, length: 200, omission: '...')
  output += link_to('[more]', article_path(article)) if article.description.size > 200
  output.html_safe
end



回答3:


Dirty solution... use the method "raw" to unescape it.
you have to be sure of "sanity" of your content.

raw(truncate article.description, :length => 200, :omission => "... #{link_to('[more]', articles_path(article)}")

raw is a helper acting like html_safe .
bye

edit: is not the omission of being escaped , but the result of truncate method.




回答4:


I encountered a similar situation and this did the trick. Try (line breaks for readability):

(truncate h(article.description), 
                  :length => 200, 
                  :omission => "... #{link_to('[more]',articles_path(article)}")
                  .html_safe

You can use h to ensure sanity of article description, and since you are setting the link_to to a path you know to not be something potentially nefarious, you can mark the resulting string as html_safe without concern.




回答5:


TextHelper#truncate has a block form of truncate, which lets you use a link_to that isn't escaped, while still escaping the truncated text:

truncate("<script>alert('hello world')</script>") { link_to "Read More", "#" }

#=> &lt;script&gt;alert(&#39;hello world&#39;...<a href="#">Read More</a>



回答6:


The only one that worked for me :

<%= truncate(@article.content, length: 200, omission: " ... %s") % link_to('read more', article_path(@article)) %>



回答7:


I had the same problem, in my case i just used :escape => false. That worked:

truncate article.description, :length => 200, :omission => "... #{link_to('[more]', articles_path(article)}", :escape => false

From documentation :

The result is marked as HTML-safe, but it is escaped by default, unless :escape is false.... link: http://apidock.com/rails/ActionView/Helpers/TextHelper/truncate



来源:https://stackoverflow.com/questions/5032167/rails-truncate-helper-with-link-as-omit-text

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!