前提・実現したいこと
jqueryを読み込んで、console.logでデバックができるようにしたい。
現在jqueryでコードを書いているんですが、コードが正しいかどうか確認するために検証でconsole.logを実行してみたところ、jqueryがうまく読み込まれていないのか、コードが機能していない状況です。
バージョン
ruby '2.5.7', 'rails', '~> 5.2.4', '>= 5.2.4.3'です
発生している問題・エラーメッセージ
検証画面でconsole.logを実行したときに表示されるエラー文
GET http://localhost:3000/credit_cards/credit_cards.js net::ERR_ABORTED 500 (Internal Server Error)
該当のソースコード
application.html
ruby
1<!DOCTYPE html> 2<html> 3 <head> 4 <title>SampleApp</title> 5 <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> 6 <script>{src="https://js.pay.jp", type="text/javascript"}</script> 7 <script src="credit_cards.js"></script>
jqueryで表示させたい
let hello = 'こんにちは'; console.log(hello);
本来は以下のコードで、cardが定義されているか確認したかったのです。
そこで、console.logを実行したところ、undefinedエラーが出たためにエラー原因を探っていると、そもそもjqueryが読み込まれていないのではないかとなりました。
$(function() { Payjp.setPublicKey('pk_test_d9d5358cfdfab733fb8af0ef'); $("#cardForm").on('click', function(e) { e.preventDefault(); let card = { number: $('#card-number').val(), cvc: $('#cvc').val(), exp_month: $('#card-month').val(), exp_year: $('#card-year').val() };
application.js
// This is a manifest file that'll be compiled into application.js, which will include all the files // listed below. // // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, or any plugin's // vendor/assets/javascripts directory can be referenced here using a relative path. // // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the // compiled file. JavaScript code in this file should be added after the last require_* statement. // // Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details // about supported directives. // //= require rails-ujs //= require activestorage //= require turbolinks //= require_tree .
試したこと
jqueryが読み込まれるようにscriptした
<script src="credit_cards.js"></script>
このコードにどうやら問題あるみたいだが、なぜ?かわからない
gem 'jquery-rails'は導入している
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/08/25 14:16
2020/08/25 14:49
2020/08/25 15:30 編集
2020/08/25 22:59 編集