Bootstrap隐藏模式在使用ajax的Rails 6中不起作用

Posted

技术标签:

【中文标题】Bootstrap隐藏模式在使用ajax的Rails 6中不起作用【英文标题】:Bootstrap hide modal not working in Rails 6 using ajax 【发布时间】:2020-02-10 18:42:14 【问题描述】:

我试图通过 jquery 调用在 rails 6 中隐藏一个引导模式,但经过 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">&times;</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 方法中。

然后我为视图创建了一个文件 Create.js.erb,其中包含以下代码

$('#logModal').modal('hide');

当我查看网页时,模式会加载但不会关闭。如果我在隐藏模式行之前发出警报,则会出现警报,因此路由显然正在加载。如果我将$('#logModal').modal('hide'); 粘贴到 chrome 浏览器控制台中,我会收到以下错误

Uncaught TypeError: $(...).modal is not a function

查看其他答案,这似乎是由于两次加载 jquery 或 jquery 和引导程序以错误的顺序引起的。我花了一个星期尝试不同的东西,但似乎没有任何效果。我正在使用 rails 6 和 app/javascript/paths 中的 appication.js 文件读取:

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 加载...我认为如果我可以让它工作,这将是一个更好的方法...?

【问题讨论】:

你有没有想过这个问题?我尝试了@ameyab 的解决方案无济于事。我有完全相同的问题。打开模式有效,但关闭无效。 这是不久前的事了,但我认为 ameyab 的解决方案有效,但我认为这有点 hack 有没有人找到更好的解决方案或者这仍然是最好的方法? 【参考方案1】:

这可能是一个彻底的 hack,但我能够通过在 application.js 中明确地将 jquery 设置为全局对象来解决这个问题。

import jquery from 'jquery';
window.$ = window.jquery = jquery;

application.js:

require("@rails/ujs").start();
require("@rails/activestorage").start();
require("channels");
import jquery from 'jquery';
window.$ = window.jquery = jquery;

import "bootstrap";
import "../stylesheets/application";

环境.js

const  environment  = require('@rails/webpacker')

const webpack = require('webpack')
environment.plugins.prepend('Provide',
  new webpack.ProvidePlugin(
    $: 'jquery',
    jQuery: 'jquery',
    Popper: ['popper.js', 'default'] 
  )
)

module.exports = environment

【讨论】:

这仍然是最好的解决方案吗?

以上是关于Bootstrap隐藏模式在使用ajax的Rails 6中不起作用的主要内容,如果未能解决你的问题,请参考以下文章

Twitter Bootstrap / jQuery - 如何暂时防止模式被关闭?

隐藏在 Bootstrap 模式中的下拉菜单

一个Django插件,用于在Bootstrap模式中创建AJAX驱动的表单。

Bootstrap 模式形式的 AJAX 实现(在 Django 上)

Bootstrap 隐藏纵向但显示横向

rails 4 bootstrap 3 ajax模式