- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 Rails 新手,我被困在这个地方。
这是我的应用程序。HTML.erb 错误出现在 JavaScript include 标记中(第 6 行)当我删除该行时,我没有收到错误我尝试执行以下操作没有成功 couldn't find file 'jquery' in Rails project我重新启动服务器几次并没有帮助最后一件事,当我打开旧项目时它可以工作,但任何新项目都会出现相同的错误
<!DOCTYPE html>
<html>
<head>
<title>Appmind</title>
<%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true %>
<%= javascript_include_tag "application", "data-turbolinks-track" => true %>
<%= csrf_meta_tags %>
</head>
<body>
<%= yield %>
</body>
</html>
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, vendor/assets/javascripts,
// or vendor/assets/javascripts of plugins, if any, 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.
//
// Read Sprockets README (https://github.com/sstephenson/sprockets#sprockets-directives) for details
// about supported directives.
//
//= require jquery
//= require jquery_ujs
//= require turbolinks
//= require_tree .
gem文件内容
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.0.2'
# Use sqlite3 as the database for Active Record
gem 'sqlite3'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 4.0.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', '~> 4.0.0'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 1.2'
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end
# Use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.1.2'
# Use unicorn as the app server
# gem 'unicorn'
# Use Capistrano for deployment
# gem 'capistrano', group: :development
# Use debugger
# gem 'debugger', group: [:development, :test]
追踪
Rails.root: C:/aptanastudio3/appmind
Application Trace | Framework Trace | Full Trace
app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___663637225_30053304'
如有任何帮助,我们将不胜感激
最佳答案
我发现当我的 gem 'jquery-rails' 被包装在一个组 :assets do block 中时,它不起作用。但我把它从街区上移走了,现在它使用了最现代的 rails 。这与您的情况不同,但我认为换个方式可能会有效。
关于jquery - Sprockets::FileNotFound 找不到文件 'jquery',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22120201/
当 Sprockets 对象编译失败(由于 CoffeeScript 或 SASS 中的语法错误)时,它无法在修复错误后重新编译,因为它说“文件已经需要”。 为了让 sprockets 对象工作,我必
我正在使用带 sprockets 的中间人将我的 js 和 css 文件打包到一个文件中。这很好用。但是我想知道是否可以在中间人中启用 sprockets 的指纹功能。 例如我的文件 all.js,其
我在升级我的 Rails 4.2 应用程序后尝试使用 Rails 5。 更改版本后,我使用了命令 bundle exec rake rails:update 访问某些 View 时出现错误: Asse
我对这两个中哪一个是 rails 的实际 sprockets gem 感到困惑?我应该使用哪一种?两者有什么区别? sprockets rails :https://github.com/rails/
对于用于测试 Rails 应用程序的 Rails 引擎 Konacha,我们需要一种方法来查找 Sprockets 可以编译为 JavaScript 的所有文件。 现在我们使用类似的东西 Dir['s
我是 Rails 的新手,正在尝试更改现有的 Rails 应用程序以使用 ES6 而不是 Coffeescript。我看过around online看起来应该像将以下内容添加到我的 Gemfile 中
我正在使用 gem "bootstrap-sass" gem。 在 application.js 中: //= require jquery //= require jquery_ujs //= re
在运行 git push heroku master 时在 heroku 上部署 rails 应用程序时遇到一些问题 它说Sprockets::FileNotFound:找不到类型为“applicat
这个问题在这里已经有了答案: Updating from Rails 4.0 to 4.1 gives sass-rails railties version conflicts (4 个答案) 关
我如何使用 Sprockets 有条件地要求 Assets ? 我在询问之前搜索了解决方案,并在 Sprockets 存储库中找到了这个讨论 - Conditional require 那里讨论的解决
我正在尝试使用 rails 3.1 Assets 管道从 list 文件的父目录中包含一个 javascript 文件 应用程序/ Assets /javascripts/文件夹/index.js /
我在新生成的Rails 3.1应用程序中使用Yahoo的reset.css。给定以下应用程序结构: - myapp - app - assets - styleshee
我的 Assets 路径中有以下文件: javascripts/abc.js templates/abc.js.mustache # this gets compiled to abc.js 自然地,
我有这个中间人项目。 我用 bower 给它添加了基础。 所以我的文件夹结构是这样的: -myproject -source -bower_components -foundation(c
Sprockets official documentation明确地说: Sprockets takes any number of source files and preprocesses th
我没有使用 Rails。 我正在使用 sprockets 的内置编译器任务 SprocketsTask。出处可见here . 我想禁用附加到每个文件的文件摘要。所以 application-e7aa0
我已经将闭包编译器 gem 添加到我的 Gemfile 并设置 config.assets.js_compressor = :closure 在 config/environments/product
我想包括 chosen库就像我的 Rails 应用程序中的其他 js 库一样,在 application.js 中: //= require jquery //= require jquery_ujs
我在推送到 heroku repo 时遇到了这个错误 remote: rake aborted! remote: Sprockets::DoubleLinkError: M
我是 Rails 新手,我被困在这个地方。 这是我的应用程序。HTML.erb 错误出现在 JavaScript include 标记中(第 6 行)当我删除该行时,我没有收到错误我尝试执行以下操作没
我是一名优秀的程序员,十分优秀!