LoginSignup
0
1

More than 3 years have passed since last update.

Railsの記法

Posted at

記法

link_to
飛ばしたいページを指定できます。

<%= link_to "リンク名", "飛ばしたいページ" %>

image_tag
画像ファイルを指定できます。

<%= image_tag "XXXX.png", alt: "YYYY", id: "ZZZZ", class: "AAAA", width: "XXXpx" %>

button_tag
ボタンを作成することができるヘルパーメソッドです。

<%= button_to "ボタン名", { パス or コントローラー名,アクション名 }, { オプション } %>

パスの指定

new_user_session_path  //_pathで指定します
0
1
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
1