0
0

More than 3 years have passed since last update.

Railsのヘルパーメソッド

Posted at

Railsのヘルパーメソッド備忘録

開発環境

  • Ruby2.6.3
  • Rails6.0.1

ヘルパーメソッド

simple_format

役割

  • 改行等のデータをHTMLへ渡す

使用例


<div class="card-body">
        <p class="card-text"><%= simple_format(@board.body) %></p>
        <p class="text-right font-weight-bold mr-10" ><%= @board.name %></p>
    </div>

<%= simple_format(モデルから渡されたデータ) %>

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0