LoginSignup
7
6

More than 5 years have passed since last update.

railsでaリンクでurlに変数を入れる場合のやり方

Posted at
rei
<%= link_to("編集", "/posts/#{@post.id}/edit") %>

と言うかたちでlink_toで出していたものもaリンクだけで出力したいこともある。そういう場合、<%=%>で囲まないと変数として認識されないので下記の様に記述

rei
<a href="/posts/<%= @post.id %>/edit">
7
6
1

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
7
6