0

How can I call javascript file in my ruby on rails website. For example I have this file and its inside projectname/app/assets/javascripts/bootstrap.js

Here what I tried and all of them are wrong

 <script src="~/app/assets/javascripts/bootstrap.js"></script>
 <script src="/assets/javascripts/bootstrap.js"></script>
 <script src="../javascripts/bootstrap.js"></script>

I got this error

(index):607 GET http://localhost:3000/~/app/assets/javascripts/bootstrap.js net::ERR_ABORTED 404 (Not Found)

in my application.html.erb

<%= javascript_pack_tag 'application' %>
asked Nov 26, 2020 at 18:41
1
  • The pack_tag is used for webpacker. If you are just trying to link to the file you can put it inside your public directory and then just link to the path /folder_name/file_name.js something like that. So, for example /public/javascripts/bootstrap.js and then (I believe) in your view file <script src="/javascripts/bootstrap.js"></script> Commented Nov 26, 2020 at 19:24

1 Answer 1

2

Since you are using webpack, you need to import all the JS files into your application.js

In your application.html.erb you got:

<%= javascript_pack_tag 'application' %>

So it is expecting that you have application.js inside app/javascript/packs

Inside that file you can include the bootstrap.js

So you can make a dir: app/javascript/bootstrap and place your bootstrap.js inside that folder. Than you can include it inside your application.js

# app/javascript/packs/application.js
import "../bootstrap/bootstrap";
answered Nov 27, 2020 at 7:40
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.