質問編集履歴
3
エラー画面の画像を追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -407,3 +407,13 @@
|
|
407
407
|
<%= javascript_pack_tag 'question'%>
|
408
408
|
|
409
409
|
```
|
410
|
+
|
411
|
+
|
412
|
+
|
413
|
+
11/18(水) 19:15 更新
|
414
|
+
|
415
|
+
現在、以下のようなエラーが出ています。
|
416
|
+
|
417
|
+
|
418
|
+
|
419
|
+
![![イメージ説明](5530247e1eb20a12e7f3de7aeeae1d4a.png)]
|
2
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -327,3 +327,83 @@
|
|
327
327
|
【ディレクトリとファイルの構造】
|
328
328
|
|
329
329
|
![イメージ説明](c450f6b706a278f0db64813bc3278aba.png)
|
330
|
+
|
331
|
+
|
332
|
+
|
333
|
+
|
334
|
+
|
335
|
+
|
336
|
+
|
337
|
+
11/18(水) 18:39 更新
|
338
|
+
|
339
|
+
|
340
|
+
|
341
|
+
```JavaScript
|
342
|
+
|
343
|
+
【現在のエラー文】
|
344
|
+
|
345
|
+
questions:1 GET http://localhost:3000/questions 500 (Internal Server Error)
|
346
|
+
|
347
|
+
```
|
348
|
+
|
349
|
+
```JavaScript
|
350
|
+
|
351
|
+
【index.html.erb】←JSを反映させたいファイル
|
352
|
+
|
353
|
+
|
354
|
+
|
355
|
+
<div class="container">
|
356
|
+
|
357
|
+
|
358
|
+
|
359
|
+
<div class="jumbotron mt-5">
|
360
|
+
|
361
|
+
<div class="d-flex justify-content-center">
|
362
|
+
|
363
|
+
<div id="js-question" class="alert alert-primary" role="alert">
|
364
|
+
|
365
|
+
A simple primary alert—check it out!
|
366
|
+
|
367
|
+
</div>
|
368
|
+
|
369
|
+
</div>
|
370
|
+
|
371
|
+
|
372
|
+
|
373
|
+
<div id="js-items" class="d-flex justify-content-center">
|
374
|
+
|
375
|
+
<div class="m-2">
|
376
|
+
|
377
|
+
<button type="button" id="js-btn-1" class="btn btn-primary">Primary</button>
|
378
|
+
|
379
|
+
</div>
|
380
|
+
|
381
|
+
<div class="m-2">
|
382
|
+
|
383
|
+
<button type="button" id="js-btn-2" class="btn btn-primary">Primary</button>
|
384
|
+
|
385
|
+
</div>
|
386
|
+
|
387
|
+
<div class="m-2">
|
388
|
+
|
389
|
+
<button type="button" id="js-btn-3" class="btn btn-primary">Primary</button>
|
390
|
+
|
391
|
+
</div>
|
392
|
+
|
393
|
+
<div class="m-2">
|
394
|
+
|
395
|
+
<button type="button" id="js-btn-4" class="btn btn-primary">Primary</button>
|
396
|
+
|
397
|
+
</div>
|
398
|
+
|
399
|
+
</div>
|
400
|
+
|
401
|
+
</div>
|
402
|
+
|
403
|
+
</div>
|
404
|
+
|
405
|
+
|
406
|
+
|
407
|
+
<%= javascript_pack_tag 'question'%>
|
408
|
+
|
409
|
+
```
|
1
ファイル名を記述
test
CHANGED
File without changes
|
test
CHANGED
@@ -28,6 +28,8 @@
|
|
28
28
|
|
29
29
|
```JavaScript
|
30
30
|
|
31
|
+
【question.js】
|
32
|
+
|
31
33
|
|
32
34
|
|
33
35
|
const quiz = [
|
@@ -260,6 +262,10 @@
|
|
260
262
|
|
261
263
|
```JavaScript
|
262
264
|
|
265
|
+
【application.js】
|
266
|
+
|
267
|
+
|
268
|
+
|
263
269
|
require("@rails/ujs").start()
|
264
270
|
|
265
271
|
// require("turbolinks").start()
|
@@ -280,6 +286,10 @@
|
|
280
286
|
|
281
287
|
```HTML
|
282
288
|
|
289
|
+
【application.html.erb】
|
290
|
+
|
291
|
+
|
292
|
+
|
283
293
|
<!DOCTYPE html>
|
284
294
|
|
285
295
|
<html>
|
@@ -304,10 +314,6 @@
|
|
304
314
|
|
305
315
|
</head>
|
306
316
|
|
307
|
-
|
308
|
-
|
309
|
-
<body>
|
310
|
-
|
311
317
|
<%= yield %>
|
312
318
|
|
313
319
|
</body>
|
@@ -315,3 +321,9 @@
|
|
315
321
|
</html>
|
316
322
|
|
317
323
|
```
|
324
|
+
|
325
|
+
|
326
|
+
|
327
|
+
【ディレクトリとファイルの構造】
|
328
|
+
|
329
|
+
![イメージ説明](c450f6b706a278f0db64813bc3278aba.png)
|