- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
首先,如果我没有尽可能清楚地解释我的问题,我很抱歉,我是 Ruby on Rails 的新手,这是我第一次在这里真正提出问题而不是立即在这里找到答案。
我正在阅读 Ruby on Rails 4 基本培训教程,并正在处理涵盖 Assets 的部分,我在其中导入了两个样式表(“admin.css”和“public.css”),然后更改了应用程序中的代码.css 样式表以包含这两个文件。
然后我创建了一个名为 admin.html.erb 的新布局并插入了以下行以引用新样式表:
<%= stylesheet_link_tag('application', :media => 'all') %>
但现在每次我在我的应用程序中加载任何页面时都会收到以下错误:
我在这里看到了几个类似的问题,但他们所有的代码在我的下面都有另一行引用需要修复的 JavaScript。通常将第二行更改为:
<%= stylesheet_link_tag('default', :media => 'all') %>
但这只是为了不加载样式表。
这是我的文件:admin.html.erb 布局
<!DOCTYPE html>
<html>
<head>
<title>Simple CMS | <%= @page_title || "Admin" %></title>
<%= stylesheet_link_tag('application', :media => 'all') %>
</head>
<body>
<div id="header">
<h1>Simple CMS Admin</h1>
</div>
<div id="main">
<% if !flash[:notice].blank? %>
<div class="notice">
<%= flash[:notice] %>
</div>
<% end %>
<div id="content">
<%= yield %>
</div>
</div>
<div id="footer">
<p id="copywright">© lynda.com / Brian Arpaio</p>
</div>
</body>
</html>
application.css 样式表:
/*
* This is a manifest file that'll be compiled into application.css, which will include all the files
* listed below.
*
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
* or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
*
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
* compiled file so the styles you add here take precedence over styles defined in any styles
* defined in the other CSS/SCSS files in this directory. It is generally better to create a new
* file per style scope.
*
*= require_tree .
*= require public
*= require admin
*= require_self
*/
我的主题index.html.erb View :
<% @page_title = "Subjects" %>
<div class="subjects index">
<h2>Subjects</h2>
<%= link_to("Add new subject", {:action => 'new'}, :class => 'action new') %>
<table class="listing" summary="Subject list">
<tr class="header">
<th> </th>
<th>Subject</th>
<th>Visible</th>
<th>Pages</th>
<th>Actions</th>
</tr>
<% @subjects.each do |subject| %>
<tr>
<td><%= subject.position %></td>
<td><%= subject.name %></td>
<td class="center"><%= status_tag(subject.visible) %></td>
<td class="center"><%= subject.pages.size %></td>
<td class="actions">
<%= link_to("Show", {:action => 'show', :id => subject.id}, :class => 'action show') %>
<%= link_to("Edit", {:action => 'edit', :id => subject.id}, :class => 'action edit') %>
<%= link_to("Delete", {:action => 'delete', :id => subject.id}, :class => 'action delete') %>
</td>
</tr>
<% end %>
</table>
我的 gem 文件:
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.2.5.1'
# Use mysql as the database for Active Record
gem 'mysql2', '>= 0.3.13', '< 0.5'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 4.1.0'
# See https://github.com/rails/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', '~> 2.0'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0', group: :doc
# Use ActiveModel has_secure_password
gem 'bcrypt', '~> 3.1.7'
# Use Unicorn as the app server
# gem 'unicorn'
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
end
group :development do
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '~> 2.0'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
如果信息太多/太少,我们深表歉意。任何帮助将不胜感激,谢谢!
最佳答案
好的!这为我修好了。此问题主要出现在 Windows 操作系统中。强制您的 Coffee Script Source 版本为 1.8.0。不正确支持更高版本。
将其更改或添加到您的 gem 文件中:
gem 'coffee-script-source', '1.8.0'
然后更新 coffee-script-source 包
bundle update coffee-script-source
这应该可以解决问题。
关于css - 在 Lynda.com Rails 教程中获取错误 "ExecJS::ProgramError in Subjects#index",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35920551/
我正在尝试部署到 Heroku,但遇到了此错误。我做了一些研究,并在查看相关帖子后尝试卸载并重新安装一些 gem,但我不太确定这里出了什么问题,因为我不熟悉实际问题是什么。请帮忙!我应该怎么办?到目前
错误页面: 这是 application.html.erb 文件: YoutupediaBlog true %> true %> 这两天我一直在寻找这个问题的解决
在我们的rails rfq.js.coffee中,只有一段简单的js代码: $(function() { $('#need_report').change(function(){ if (
在安装了 Ruby 2.3.3、Rails 5.0.0.1 和 NodeJS 4.2.6 的 Ubuntu 16.04 上,我使用 bin/rails generate controller welc
我创建了一个 JavaScript 类(名为 BarChart),它具有构造函数和多个初始化方法。 我执行了以下命令为生产环境预编译 Assets ,但出现错误。 用于预编译 Assets 的命令:r
将 JavaScript 添加到我的网络应用程序后,我现在收到以下错误: ExecJS::ProgramError in Listings#index [stdin]:16:5: error: une
我的应用程序在本地环境中运行良好。我正在尝试 git push 构建到 heroku。我的命令是: bundle install git add . git commit -am "abcdef" g
我尝试过使用git push到托管服务(不是heroku)。我在 Windows 上输入了以下命令。 提取 Assets :预编译 git add 。 git commit -m "xxx" git
我正在尝试部署我的 rails 应用程序但收到此错误: remote: rake aborted! remote: ExecJS::ProgramError: Unexpe
这是我的确切错误图像的链接: http://puu.sh/fHXJf/f714496a53.png 这是我的其余代码,可能是问题 这是在我的 Gemsfile 中: source 'https://r
启动一个新应用程序,当我创建一个 Controller 页面主页并尝试转到本地主机:3000/pages/home 时,出现以下错误: Showing c:/Users/Doesha/desktop/
我正在尝试使用以下命令为 Rails 4.1.1 应用程序编译 Assets 错误。 错误如下所示, $ RAILS_ENV=production bundle exec rake assets:pr
我正在尝试向我的 rails 应用程序添加登录注销功能。为此,我添加了 bcrypt gem 用于密码加密和访问 Controller 。现在,当我在本地运行它时,收到一条错误消息。在添加上述功能之前
首先,如果我没有尽可能清楚地解释我的问题,我很抱歉,我是 Ruby on Rails 的新手,这是我第一次在这里真正提出问题而不是立即在这里找到答案。 我正在阅读 Ruby on Rails 4 基本
我是 Ruby on Rails 的新手,我费了很大的劲才在我的 Windows 8 机器上安装了该软件。现在我只关注this guide创建示例 Hello World 示例。 当我尝试按照4.3
嘿,大家好,我正在尝试在 Heroku 上部署我的 ruby on Rails 4 应用程序,但在执行时遇到问题。我使用 sqlite3 并且我已经尝试了一切。 这是最后阶段的错误: 远程:---
尝试将 Rails 5 应用程序部署到 heroku 时,出现以下错误,当它到达 Running: rake assets:precompile 时: remote: ExecJS::P
部署我的 Rails 应用程序时出现以下错误: rake aborted! ExecJS::ProgramError: Unexpected token punc «(», expected p
我在将 Rails 项目推送到 heroku 时遇到问题。我收到“预编译 Assets 失败”消息。我是编程新手,也是 ruby on rails 新手。我真的需要一些帮助。这是我的命令行中的文本
我是一名优秀的程序员,十分优秀!