- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试使用一些 slider gem,但我一直遇到同样的问题,
https://github.com/soycamo/jquery-nouislider-rails
我按照说明放入 app/assets/javascript list 文件:
//=需要jquery.nouislider
在 app/assets/stylesheets list 文件中:
//=需要jquery.nouislider
我也安装了 gem。但是我不断收到错误消息:
Showing /home/ubuntu/foodin/app/views/layouts/application.html.erb where line #8 raised:
couldn't find file 'jquery.nouislider'
(in /home/ubuntu/foodin/app/assets/stylesheets/application.css:16)
<%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true %>
我认为这可能与 Assets 管道有关,但我不确定。有任何想法吗?感谢您的帮助!
编辑:这是我的 development.rb 配置文件,以防与此有关:
Foodin::Application.configure do
# Settings specified here will take precedence over those in config/application.rb.
# In the development environment your application's code is reloaded on
# every request. This slows down response time but is perfect for development
# since you don't have to restart the web server when you make code changes.
config.cache_classes = false
# Do not eager load code on boot.
config.eager_load = false
# Show full error reports and disable caching.
config.consider_all_requests_local = true
config.action_controller.perform_caching = false
# Don't care if the mailer can't send.
config.action_mailer.raise_delivery_errors = false
# Print deprecation notices to the Rails logger.
config.active_support.deprecation = :log
# Raise an error on page load if there are pending migrations
config.active_record.migration_error = :page_load
# Debug mode disables concatenation and preprocessing of assets.
# This option may cause significant delays in view rendering with a large
# number of complex assets.
config.assets.debug = true
#NEW: Added for Devise
config.action_mailer.default_url_options = { :host => 'localhost:3000' }
#New:Added for development
config.serve_static_assets = false
end
最佳答案
在 app/assets/stylesheets/application.css 中应该是
*= require jquery.nouislider
不是
//= require jquery.nouislider
并尝试将 Gemfile 声明替换为;
gem 'jquery-nouislider-rails', '~> 4.0.1.1'
指定版本并重启服务器
工作设置
我简单downloaded nonuislider here并将其添加到 app/assets/javascripts 文件夹,然后像您之前所做的那样在 application.js 中调用它并且它起作用了。可能 Gem 有问题。
关于javascript - 在 application.css 中找不到//=require jquery.nouislider,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24096467/
例如,我有一个父类Author: class Author { String name static hasMany = [ fiction: Book,
代码如下: dojo.query(subNav.navClass).forEach(function(node, index, arr){ if(dojo.style(node, 'd
我有一个带有 Id 和姓名的学生表和一个带有 Id 和 friend Id 的 Friends 表。我想加入这两个表并找到学生的 friend 。 例如,Ashley 的 friend 是 Saman
我通过互联网浏览,但仍未找到问题的答案。应该很容易: class Parent { String name Child child } 当我有一个 child 对象时,如何获得它的 paren
我正在尝试创建一个以 Firebase 作为我的后端的社交应用。现在我正面临如何(在哪里?)找到 friend 功能的问题。 我有每个用户的邮件地址。 我可以访问用户的电话也预订。 在传统的后端中,我
我主要想澄清以下几点: 1。有人告诉我,在 iOS 5 及以下版本中,如果您使用 Game Center 设置多人游戏,则“查找 Facebook 好友”(如与好友争夺战)的功能不是内置的,因此您需要
关于redis docker镜像ENTRYPOINT脚本 docker-entrypoint.sh : #!/bin/sh set -e # first arg is `-f` or `--some-
我是一名优秀的程序员,十分优秀!