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.
私はこれをやろうとしていますtruncate raw(@some_text), length: 300。テキストが 300 文字の制限を超えると、テキストに html タグが表示されます。
truncate raw(@some_text), length: 300
テキスト内の html (先頭に追加されたタグと追加されたタグ) プロパティを切り捨てて実装する必要があります。同じことを行う他の方法はありますか?前もって感謝します。
これは raw(@some_text.slice(0,300)) で動作するはずです
これを試して、テキストからhtmlタグを切り捨てて削除してください....
truncate(strip_tags(@some_text), :長さ => 300)
参照リンク