gpt4 book ai didi

ruby-on-rails - Rails AssetNotPrecompiledError 即使 Assets 正在预编译

转载 作者:行者123 更新时间:2023-12-01 15:32:24 25 4
gpt4 key购买 nike

我是 Ruby 和 Rails 的新手,我已经考虑了好几天了,还没有找到解决方案。我的项目在我的开发环境中运行良好,但在我的 alpha 或生产环境中却不行。

我的 app/assets/stylesheets 文件夹中有以下样式表:

app
--> assets
--> stylesheets
--> modules
--> _header.css.scss
--> _footer.css.scss
--> home.css.scss
--> user.css.scss
--> help.css.scss

当我尝试使用我的 alpha 环境(即通过运行 rails s --environment=alpha )时,我收到此错误:
Sprockets::Helpers::RailsHelper::AssetPaths::AssetNotPrecompiledError in Home#index
Showing /app/views/home/index.haml where line #1 raised:
home.css isn't precompiled

我正在使用 stylesheet_link_tag('home') 将该样式表添加到我的 View 中.

我的 alpha.rb文件有这个:
config.assets.compile = false
config.assets.precompile += %w( help.css home.css users.css )
config.assets.compress = true
config.assets.debug = false

我正在运行预编译任务(即 rake assets:precompile RAILS_ENV=alpha )。该任务似乎工作正常。这是输出:
rake assets:precompile RAILS_ENV=alpha --trace
** Invoke assets:precompile (first_time)
** Execute assets:precompile
/ruby-1.9.3-p286/bin/rake assets:precompile:all RAILS_ENV=alpha RAILS_GROUPS=assets --trace
** Invoke assets:precompile:all (first_time)
** Execute assets:precompile:all
** Invoke assets:precompile:primary (first_time)
** Invoke assets:environment (first_time)
** Execute assets:environment
** Invoke environment (first_time)
** Invoke rails_admin:disable_initializer (first_time)
** Execute rails_admin:disable_initializer
[RailsAdmin] RailsAdmin initialization disabled by default. Pass SKIP_RAILS_ADMIN_INITIALIZER=false if you need it.
** Execute environment
** Invoke tmp:cache:clear (first_time)
** Execute tmp:cache:clear
** Execute assets:precompile:primary

我的文件确实在 /public/assets/ 中结束,以及 /public/assets/manifest.yml正在创建并列出了我的文件:
application.css: application.css
help.css: help.css
home.css: home.css
users.css: users.css

如果我尝试访问服务器(通过转到 http://localhost:3000 ),我会得到前面提到的 AssetNotPrecompiledError home.css 的错误;但是, http://localhost:3000/assets/home.css确实返回样式表。

AFAIK 生成此错误是因为 Rails 不知道 home.css 的位置位于;但是,它在 manifest.yml 上列出,我认为它应该在哪里寻找它。

如果您需要更多信息,我很乐意提供。这让我发疯!

- 编辑 -

根据 Qumara SixOneTour 的要求,这是我的 application.css.scss:
@import 'modules/header';
@import 'modules/footer';

body {
background: $bgColor asset-url('bgFull.jpg', image) repeat-x center top;
}

div.main {
padding: 35px 30px;
background: $whitweColor;
margin-top: -3px;
padding-bottom: 30px;
@include border-bottom-left-radius(5px);
@include border-bottom-right-radius(5px);

h1 {
font-size: 2em;
}

h2 {
font-size: 1.5em;
}
}

@media only screen and (max-width: 767px) {
body {
background: $bgColor asset-url('bg.png', image) repeat-x;
}
}

基本上,我不使用 list ,而是在每个 View 中加载单独的 css 文件。

最佳答案

我建议您坚持有关 list 文件的默认设置。它们是 Assets 管道的管理点。在您的情况下,有几件事要做:

  • 移动任何css来自 application.css 的定义到 app/assets/stylesheets 中的单独 css 文件
  • 以“ list ”样式包含您的部分 - 这是一个奇怪的部分,您可以告诉行已注释,但它们没有。像这样 :
    *= require_self  
    *= require jquery
    *= require jquery_ujs
    *= require_tree .
  • 如果您要扩展 assets/stylesheets对于新目录,就像您正在尝试做的那样,最好在 application.rb 中提及这一点像这样 :
    config.assets.paths << Rails.root.join("app", "assets", "styleshhets", "modules")

  • 最后一个建议:删除您的 public/assets在开发环境中。它使事情变得无用复杂。就靠 app/assets .

    关于ruby-on-rails - Rails AssetNotPrecompiledError 即使 Assets 正在预编译,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14322356/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com