我跟在这里:Text Helper
具体来说,我使用的是最后一个示例,并且在我的代码中有:
<%= truncate_html(posts.content) {link_to "Continue", post_path(posts.url_name)}%>
truncate的第一部分有效,但链接没有出现。知道为什么我的链接没有出现吗?
答案 0 :(得分:1)
我不知道truncate_html
,但您最终可以使用this questions answer一个块:
<%= truncate(posts.content, :escape => false) { link_to "Continue", post_path(posts.url_name) } %>
这会产生你想要的结果。
答案 1 :(得分:0)
componentWillUnmount
似乎不是Rails基本代码中的有效方法。试试truncate_html
truncate