0
0

More than 1 year has passed since last update.

rails view <% %> <%= %> 書き方

Posted at

<% %>の場合は何も表示されないので、変数の定義などに用います。
一方<%= %>の場合では、Rubyコードの中身が表示されるため、変数の値などを実際にページ内に表示したい場合に用います。

<% post1 = "今日からRailsの勉強するよー!" %>
<% post2 = "投稿一覧ページ作成中!" %>

<div class="">
  <div class="">
    <div class="">
      <%= post1 %>
      //今日からRailsの勉強するよー!を表示
    </div>
    <div class="">
    <%= post2 %>
    //投稿一覧ページ作成中!を表示
    </div>
  </div>
</div>
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