現在、JavaScriptでモーダルウィンドウを作成中です。
Rails6.0にて、〜.js
という名前のファイルにJavaScriptを書いても、
JavaScriptが動かず、困っております。
ご回答頂けますと幸いです。
#困っていること
app/javascript/packs/application.js
にコードを書いても、JavaScriptが動きません。
下記のように記述をしております。
// This file is automatically compiled by Webpack, along with any other files // present in this directory. You're encouraged to place your actual application logic in // a relevant structure within app/javascript and only use these pack files to reference // that code so it'll be compiled. require("@rails/ujs").start() require("turbolinks").start() require("@rails/activestorage").start() require("channels") require("jquery") const modalBtn = document.getElementById('modalBtn') const modal = document.getElementById('modal') modalBtn.addEventListener('click', () => { modal.style.display = 'block'; }) // Uncomment to copy all static images under ../images to the output folder and reference // them with the image_pack_tag helper in views (e.g <%= image_pack_tag 'rails.png' %>) // or the `imagePath` JavaScript helper below. // // const images = require.context('../images', true) // const imagePath = (name) => images(name, true)
#試したこと1
モーダルウィンドウを組み込みたいViewファイルに直接JavaScriptを書きました。
結果、JavaScriptは動いてくれました。(「投稿する」ボタンを押すと、モーダルウィンドウのパーツが現れる)
動いてくれるのですが、Viewファイルのコードがごちゃごちゃしてしまうので、
javascriptは〜.js
という名前のファイルに記述するべきなのではないかと考えています。
#views/microposts/index.html.erb <% provide(:title, "メンバー募集") %> <% if logged_in? %> <div class="form-wrapper"> <div class="micropost content-wrapper"> <h1>Wanted Member</h1><input type="button" id="modalBtn" value='投稿する'> </div> <div class="micropost-wrapper"> <%= render 'shared/feed' %> </div> </div> <% else %> <div class="micropost-wrapper"> <%= render 'shared/feed' %> </div> <% end %> <div id="modal" class="modal"> <div class="modal-content"> <div class="modal-body"> <section class="micropost_form"> <%= render 'shared/micropost_form' %> </section> </div> </div> </div> <script type="text/javascript"> const modalBtn = document.getElementById('modalBtn') const modal = document.getElementById('modal') modalBtn.addEventListener('click', function() { modal.style.display = 'block'; }) </script>
#試したこと2
app/javascript/main.js
というファイルを作成し、そこにJavaScriptを書き込み、
app/javascript/packs/application.js
にて、app/javascript/main.js
をrequireしてみました。
(app/javascript/packs/application.js
に直接JavaScriptを書き込むべきではないと考えたため。)
この結果も、何も反応しないという形で終わりました。
#app/javascript/main.js const modalBtn = document.getElementById('modalBtn') const modal = document.getElementById('modal') modalBtn.addEventListener('click', () => { modal.style.display = 'block'; })
// This file is automatically compiled by Webpack, along with any other files // present in this directory. You're encouraged to place your actual application logic in // a relevant structure within app/javascript and only use these pack files to reference // that code so it'll be compiled. require("@rails/ujs").start() require("turbolinks").start() require("@rails/activestorage").start() require("channels") require("jquery") require('../main.js) // Uncomment to copy all static images under ../images to the output folder and reference // them with the image_pack_tag helper in views (e.g <%= image_pack_tag 'rails.png' %>) // or the `imagePath` JavaScript helper below. // // const images = require.context('../images', true) // const imagePath = (name) => images(name, true)
以上でございます。
〜.js
というファイルにJavaScriptを記述する場合、どのように記述すれば動くようになりますでしょうか。
恐れ入りますが、ご教示頂けますと幸いです。
よろしくおねがいいたします。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/03/12 00:25
2021/03/12 00:27
2021/03/12 12:34
2021/03/12 13:20 編集