以下のサンプルコードをもとに実装したのですが
エラーが出てしまいます。
どこを直せば良いのでしょうか
application.js:10 Uncaught Error: Cannot find module '../random'
at webpackMissingModule (application.js:10)
at Object../app/javascript/packs/application.js (application.js:10)
at webpack_require (bootstrap:19)
at bootstrap:83
at bootstrap:83
webpackMissingModule @ application.js:10
./app/javascript/packs/application.js @ application.js:10
webpack_require @ bootstrap:19
(anonymous) @ bootstrap:83
(anonymous) @ bootstrap:83
themes:35 GET http://localhost:3000/random.js net::ERR_ABORTED 404 (Not Found)
themes:42 Uncaught ReferenceError: clickedStart is not defined
at HTMLButtonElement.onclick (themes:42)
https://jsfiddle.net/Lhankor_Mhy/gnq08t3z/
html
1 2<head> 3<script src="random.js"></script> 4</head> 5<div id="roulette"> 6<p id="isPlace">11111</p> 7</div> 8 9<div class="buttons"> 10<button id="start" onClick="clickedStart()">start</button> 11<button id="stop" onClick="clickedStop()">stop</button> 12</div> 13 14 15コード
Javasprict
1const 用意していた文字 = ["用意していた文字1","用意していた文字2"]; 2let timer; 3var clickedStart = ()=> timer = setInterval( 4 ()=> isPlace.textContent = 用意していた文字[ Math.floor( Math.random() * 用意していた文字.length ) ], 5 100 6); 7 8var clickedStop= ()=> clearInterval( timer ); 9 10 11
回答1件
あなたの回答
tips
プレビュー