8wDlpd.png
8wDFp9.png
8wDEOx.png
8wDMfH.png
8wDKte.png

CONSULDEMOCRACY:Sass 失败(未找到 sassc-embeded-import 样式表)

anthony sottile 3月前

90 0

用户故事我正在尝试部署 consuledemocracy 的本地实例,如果失败,则出现 Sass::CompileErrorDescription我的系统是 Ubuntu 22.04,我使用以下版本:Rails v6.1.7.7...

用户故事

我正在尝试部署 consuledemocracy 的本地实例,如果失败,则会出现 Sass::CompileError

描述

我的系统是 Ubuntu 22.04,我使用以下版本:Rails v6.1.7.7NodeJS v18.18.2PSQL v14.11Ruby v3.2.3

我已按照本地安装的步骤进行操作,虽然可以部署服务器(bin/rails server -b 0.0.0.0),但访问本地主机时出现以下错误:

Completed 500 Internal Server Error in 5267ms (ActiveRecord: 165.5ms | Allocations: 3295956)

ActionView::Template::Error (Error: Can't find stylesheet to import.
  
1  @import "sassc-embedded-import:19";
           ^^^^^^^^^^^^^^^^^^^^^^^^^^
  
  sassc-embedded-import:18 1:9                                                        @import
  /home/singular/consul/consuldemocracy/app/assets/stylesheets/application.scss 10:9  root stylesheet):

sassc-embedded (1.70.1) lib/sassc/embedded.rb:66:in `rescue in render'
sassc-embedded (1.70.1) lib/sassc/embedded.rb:13:in `render'
sassc-rails (2.1.2) lib/sassc/rails/template.rb:40:in `block in call'
sprockets (4.2.1) lib/sprockets/utils.rb:145:in `block in module_include'
sprockets (4.2.1) lib/sprockets/utils.rb:130:in `synchronize'
sprockets (4.2.1) lib/sprockets/utils.rb:130:in `module_include'
sassc-rails (2.1.2) lib/sassc/rails/template.rb:39:in `call'
sprockets (4.2.1) lib/sprockets/processor_utils.rb:84:in `call_processor'
...
...

当我运行 bin/rails assets:precompile 时,我得到:

singular@euprojects: ~/consul/consuldemocracy$ bin/rails assets:precompile
rails aborted!
SassC::SyntaxError: Error: Can't find stylesheet to import. (SassC::SyntaxError)
  
1  @import "sassc-embedded-import:19";
           ^^^^^^^^^^^^^^^^^^^^^^^^^^
  
  sassc-embedded-import:18 1:9                                                        @import
  /home/singular/consul/consuldemocracy/app/assets/stylesheets/application.scss 10:9  root stylesheet

Caused by:
Sass::CompileError: Can't find stylesheet to import. (Sass::CompileError)

Tasks: TOP => assets:precompile
(See full trace by running task with --trace)

我觉得好像缺少样式表,但我在网上找不到任何信息。

帖子版权声明 1、本帖标题:CONSULDEMOCRACY:Sass 失败(未找到 sassc-embeded-import 样式表)
    本站网址:http://xjnalaquan.com/
2、本网站的资源部分来源于网络,如有侵权,请联系站长进行删除处理。
3、会员发帖仅代表会员个人观点,并不代表本站赞同其观点和对其真实性负责。
4、本站一律禁止以任何方式发布或转载任何违法的相关信息,访客发现请向站长举报
5、站长邮箱:yeweds@126.com 除非注明,本帖由anthony sottile在本站《ruby》版块原创发布, 转载请注明出处!
最新回复 (0)
  • Eigenclass 不再是 Ruby 世界中使用的名称,因为 Ruby 官方 Object#singleton_class 在不知道哪个版本的地方引入了一种方法(抱歉)。

    Ruby 中的每个对象,无论是“普通”对象还是类,甚至是单例类,都有其自己的单例类。

    单例类是一个类。

    Object.new.singleton_class.is_a?(Class)  #=> true
    

    单例类有且仅有一个实例,它是你调用的对象 singleton_class 。例如,唯一的实例 foo.singleton_class foo .

    Ruby 允许您向单个对象添加方法。

    a = Object.new
    b = Object.new
    
    def a.foo
      'foo'
    end
    
    a.foo  #=> "foo"
    b.foo  #=> raises NoMethodError 
    

    但是所有实例方法都应该定义在类中,那么在哪个类中 a.foo 定义呢?答案是 a.singleton_class 。因为 a.singleton_class 只有一个实例,即 a ,所以实例方法 foo 只能在 上调用 a ,而不能在 上调用 b ,尽管它们是同一类型。

    至于类的单例类,它们的目的是存储“普通类”的类方法,或者如果你稍微动动脑筋,就可以存储与各个类实例绑定的实例方法。

    您是否觉得 Ruby 的对象模型一致且美观?

返回
作者最近主题: