railsで、引数やインスタンス変数を渡す時等に使用する「.(ドット)」が、それぞれどのような意味や役割を持っているか理解が難しいため、教えて頂けると幸いです。
例えば以下のような使い方です。
def show @user = @book.user end
<%= link_to edit_user_path(@book.user), class: "btn btn-default" do %>
<%= link_to book.title, book_path(book.id) %>
<table class="table"> <tr> <th>name</th> <th><%= current_user.name %></th> </tr> <tr> <th>introduction</th> <th><%= current_user.introduction %></th> </tr> </table>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/12/21 08:29
退会済みユーザー
2019/12/21 08:51
2019/12/21 08:53
2019/12/21 08:54
退会済みユーザー
2019/12/21 14:37