当前位置 : 主页 > 网页制作 > Bootstarp >

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

来源:互联网 收集:自由互联 发布时间:2021-06-12
我在rails 3.2.17应用程序中创建了一个简单的webapp集成引导3,遵循在stackoverflow上发现的 this过程,因此不使用gem,而是手动复制相关应用程序目录中的引导文件. 即使我有,在我的宝石文件:
我在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>
网友评论