0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

フォームやボタンでのURL指定について

Posted at

##編集機能のフォーム
<%= form_tag("/memos/"+@memo.id.to_s, :method=>:patch) do %>

「え…idって数値じゃないの?なんで""から外すの?」
=>数値は“”で囲われることで文字列になるから

@memoはインスタンス変数として使いたいから""で囲わない
=>囲うと**"@memo"という文字列**になってしまい、インスタンス変数としての機能が無くなる

そのため、まずidを取得してから**.to_sで文字列に変え、+**を用いて文字列と連結させた

##削除機能のボタン
<a href="/memos/<%= memo.id %>" data-method="delete" >

**<%= memo.id %>**はもちろん数値であり、それを""で囲うことで文字列となった


URLに<%= ~ %>の形を組み込むか、インスタンス変数を組み込むかで変わってくる

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?