質問編集履歴
3
db/migrate/20220103041226_create_bookmarks.rb追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -234,6 +234,34 @@
|
|
234
234
|
|
235
235
|
|
236
236
|
|
237
|
+
######db/migrate/20220103041226_create_bookmarks.rb
|
238
|
+
|
239
|
+
```
|
240
|
+
|
241
|
+
class CreateBookmarks < ActiveRecord::Migration[6.1]
|
242
|
+
|
243
|
+
def change
|
244
|
+
|
245
|
+
create_table :bookmarks do |t|
|
246
|
+
|
247
|
+
t.integer :user_id
|
248
|
+
|
249
|
+
t.integer :task_id
|
250
|
+
|
251
|
+
|
252
|
+
|
253
|
+
t.timestamps
|
254
|
+
|
255
|
+
end
|
256
|
+
|
257
|
+
end
|
258
|
+
|
259
|
+
end
|
260
|
+
|
261
|
+
```
|
262
|
+
|
263
|
+
|
264
|
+
|
237
265
|
### 試したこと
|
238
266
|
|
239
267
|
調べたところ、turbolinksをオフにするというのがあったので、
|
2
タイトル変更
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
ajaxに
|
1
|
+
ajax お気に入り機能がうまく動作しません。
|
test
CHANGED
File without changes
|
1
リロードした時のエラー分を記載
test
CHANGED
File without changes
|
test
CHANGED
@@ -10,19 +10,29 @@
|
|
10
10
|
|
11
11
|
1回1回リロードしないと切り替わらない状態です。
|
12
12
|
|
13
|
-
エラー
|
13
|
+
リロードすると、ターミナルで下記のエラーが発生してます。
|
14
14
|
|
15
15
|
教えてもらえると幸いです。宜しくお願いします。
|
16
16
|
|
17
17
|
|
18
18
|
|
19
|
+
|
20
|
+
|
19
21
|
### 発生している問題・エラーメッセージ
|
20
22
|
|
21
|
-
|
22
|
-
|
23
|
-
```
|
23
|
+
```
|
24
|
+
|
24
|
-
|
25
|
+
app/controllers/bookmarks_controller.rb:10:in `destroy'
|
26
|
+
|
27
|
+
Completed 500 Internal Server Error in 15ms (ActiveRecord: 5.4ms | Allocations: 2995)
|
28
|
+
|
29
|
+
|
30
|
+
|
25
|
-
|
31
|
+
NoMethodError (undefined method `destroy' for nil:NilClass):
|
32
|
+
|
33
|
+
|
34
|
+
|
35
|
+
app/controllers/bookmarks_controller.rb:11:in `destroy'
|
26
36
|
|
27
37
|
```
|
28
38
|
|
@@ -226,7 +236,7 @@
|
|
226
236
|
|
227
237
|
### 試したこと
|
228
238
|
|
229
|
-
|
239
|
+
調べたところ、turbolinksをオフにするというのがあったので、
|
230
240
|
|
231
241
|
```data: {"turbolinks" => false}```
|
232
242
|
|