質問編集履歴
1
ボタンtagを追加
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
非同期のいいね機能 ボタン
|
1
|
+
非同期のいいね機能 ボタンが反応しない!
|
test
CHANGED
@@ -118,11 +118,11 @@
|
|
118
118
|
|
119
119
|
<% if @book.favorited_by?(current_user) %> <!-- ログインしているユーザーがファボしたかどうかで分岐 -->
|
120
120
|
|
121
|
-
<
|
121
|
+
<button><span>お気に入り解除: </span><%=link_to book.favorites.count, book_favorites_path(book.id), method: :delete, remote: true %></button>
|
122
122
|
|
123
123
|
<% else %>
|
124
124
|
|
125
|
-
<
|
125
|
+
<button><span>お気に入り登録: </span><%=link_to book.favorites.count, book_favorites_path(book.id), method: :post, remote: true %></button>
|
126
126
|
|
127
127
|
<% end %>
|
128
128
|
|