問題タブ [actiontext]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
ruby-on-rails - trix フォーマット情報なしで ActionText 出力を切り捨てる方法
Rails Action Text フィールド:content
があり、フィールド全体を受け入れると正常にレンダリングされますが、長くてその一部を表示したいだけです。
<%= year.content %>
長すぎることを除けば問題なく動作します。
<%= year.content.truncate(70) %>
結果はundefined method 'truncate' for #<ActionText::RichText:0x00007ffb811a6060>
<%= year.content.to_s.truncate(70) %>
作業できるディスプレイ<div class="trix-content"> <div> <strong>Jack Marietich, restaura...
が表示されますが、最初を取り除く必要がない方法はありますか?