質問編集履歴
2
タグの追加
test
CHANGED
File without changes
|
test
CHANGED
File without changes
|
1
動作環境とjs読み込みの記述を追加しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -28,6 +28,8 @@
|
|
28
28
|
|
29
29
|
```HTML
|
30
30
|
|
31
|
+
<%= javascript_pack_tag 'test' %><!--jsファイル読み込み-->
|
32
|
+
|
31
33
|
<input type="text" onkeyup="test('aaa')">
|
32
34
|
|
33
35
|
```
|
@@ -48,4 +50,20 @@
|
|
48
50
|
|
49
51
|
|
50
52
|
|
53
|
+
console.log('test')とすると結果は返ってくるためjsファイル自体の読み込みは正常に出来ていると思われます。
|
54
|
+
|
55
|
+
|
56
|
+
|
57
|
+
動作環境は
|
58
|
+
|
59
|
+
Ruby 2.6.5
|
60
|
+
|
61
|
+
Rails 6.0.1
|
62
|
+
|
63
|
+
|
64
|
+
|
65
|
+
Vue,React,Angular等のフレームワークは使用しておりません。
|
66
|
+
|
67
|
+
|
68
|
+
|
51
69
|
ご教示いただければ幸いです。
|