Ruby Thin Server ActionView :: Template错误

时间:2019-02-21 02:13:48

标签: jquery css ruby-on-rails-3 nginx thin

当前,我将项目推送到Amazon Web Services上的实时环境然后访问域时遇到错误。

ActionView::Template::Error (Command 'java -jar /home/ubuntu/.rvm/gems/ruby-2.1.10@silk/gems/yui-compressor-0.12.0/lib/yui/../yuicompressor-2.4.8.jar --type css --charset utf-8 /tmp/yui_compress20190221-3152-1wh64vu' returned non-zero exit status
  (in /home/ubuntu/ssc-staging/app/assets/stylesheets/application.css)):
    7:     %meta{:'http-equiv' => "X-UA-Compatible", :content => "IE=edge,chrome=1"}/
    8:     %meta{:name => 'viewport', :content => 'width=device-width, initial-scale=1.0'}/
    9:     = favicon_helper
    10:     = stylesheet_link_tag 'application', "//ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css"
    11:     = yield :css
    12:     = javascript_include_tag 'application'
    13:     = yield :js
  app/views/layouts/application.html.haml:10:in `_app_views_layouts_application_html_haml___4483641441858119908_47087558678120'

此页面随附上述错误。

enter image description here

错误专门来自第10行,它是jquery-ui.css的样式表链接标记。如果删除此行,尽管没有CSS样式,我的项目仍会加载。如果我在本地运行项目,则效果很好。

我尚未对'application.html.haml'文件进行任何更改。如果我进行回滚并在以前的功能上进行部署,则即使构建的这些版本工作顺利,也会出现相同的错误。

Ruby Web服务器与Thin一起与Nginx一起使用。

1 个答案:

答案 0 :(得分:0)

我设法解决了这个问题。问题是yui_compressor需要在服务器环境中安装Java。安装此程序后,一切都会按预期进行。