Я пытаюсь скрыть загрузочный модал в rails 6 с помощью вызова jquery, но после 2 недель попыток я не могу заставить его работать ...
Мой модал настроен в видекак это:
<!-- Button trigger modal -->
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#logModal">
Launch demo modal
</button>
<!-- Modal -->
<%= simple_form_for(@log, remote: true) do |f| %>
<%= f.error_notification %>
<%= f.error_notification message: f.object.errors[:base].to_sentence if f.object.errors[:base].present? %>
<div class="form-actions">
<%= f.button :submit %>
</div>
<div class="modal fade" id="logModal" tabindex="-1" role="dialog" aria-labelledby="logModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="logModalLabel">Modal title</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div class="form-inputs">
<%= f.association :user %>
<%= f.association :project %>
<%= f.input :body %>
</div>
...
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal" id="logmodalclose">Close</button>
<%= submit_tag "create", close: "btn btn-primary" %>
</div>
</div>
</div>
</div>
<% end %>
Затем к методу создания в контроллер добавляется format.js
.
Затем я создал файл Create.js.erb для представлений со следующим кодом вit
$('#logModal').modal('hide');
Когда я просматриваю веб-страницу, модал загружается, но не закрывается. Если я поставлю предупреждение перед скрытой модальной линией, то появится предупреждение, так что маршрутизация явно загружается. Если я вставляю $('#logModal').modal('hide');
в консоль браузера Chrome, я получаю следующую ошибку
Uncaught TypeError: $(...).modal is not a function
при поиске других ответов, это может быть вызвано двойной загрузкой jquery или jquery и начальной загрузки внеправильный порядок. Я провел неделю, пробуя разные вещи, и, кажется, ничего не работает. Я использую rails 6 и файл appication.js в app / javascript / paths гласит:
require("jquery")
require("@rails/ujs").start()
require("turbolinks").start()
require("@rails/activestorage").start()
require("channels")
require("bootstrap/dist/js/bootstrap")
// Tomas added to import Style sheets
import '../stylesheets/application'
import './bootstrap_custom.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)
//= require jquery3
//= require popper
//= require bootstrap-sprockets
Если честно, я не понимаю разницу между Require("Jquery")
и //= require jquery
Я довольноплохо знакомы с Rails ...
любая помощь очень ценится
ОБНОВЛЕНИЕ: Это работает, когда я добавляю следующее в нижней части представления
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
Однако я думаю,эти библиотеки должны загружаться через Application.js ... Я полагаю, если бы я мог заставить его работать, это был бы лучший способ сделать это ...?