rails和bootstrap:未捕获ReferenceError:没有定义jQuery

前端之家收集整理的这篇文章主要介绍了rails和bootstrap:未捕获ReferenceError:没有定义jQuery前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在rails 3.2.17应用程序中创建了一个简单的webapp集成引导3,遵循在stackoverflow上发现的 this过程,因此不使用gem,而是手动复制相关应用程序目录中的引导文件.

即使我有,在我的宝石文件

gem 'jquery-rails'

我仍然可以看到,用chrome检查我的网页,错误

Uncaught ReferenceError: jQuery is not defined

我的页面是公共目录中的“普通”html页面.也许它不“继承”所有的资产东西?代码如下:


<!DOCTYPE html>
<html>
<head>
    <title>Bootsrap Test 01</title>
    <link rel="stylesheet" href="/css/bootstrap.css">
    <script src="/js/bootstrap.min.js" type="text/javascript"></script>
</head>

...

我还没有尝试,但我猜,基于javascript的功能将无法正常工作.

解决方法

假设在添加gem’jquery-rails’之后,你已经运行了bundle install命令.

确保在app / assets / javascripts / application.js中有以下内容

//= require jquery
//= require jquery_ujs
//= require bootstrap.min   // Add it after jquery and jquery_ujs

编辑

在包含/bootstrap.min.js之前,您需要明确地包含jQuery.例如 :

<!DOCTYPE html>
<html>
<head>
    <title>Bootsrap Test 01</title>
    <link rel="stylesheet" href="/css/bootstrap.css">
    <script src="/assets/jquery.js" type="text/javascript"></script>
    <script src="/assets/jquery_ujs.js" type="text/javascript"></script>
    <script src="/js/bootstrap.min.js" type="text/javascript"></script>
</head>
原文链接:https://www.f2er.com/bootstrap/233760.html

猜你在找的Bootstrap相关文章