10

我正在使用 bootstrap-sass-rails这个问题,当我在生产模式下运行我的 rails 项目时,我得到 3x 404 错误:

GET http://localhost:3000/assets/twitter/bootstrap/glyphicons-halflings-regular.woff 404 (Not Found) assets/twitter/bootstrap/glyphicons-halflings-regular.woff:1
GET http://localhost:3000/assets/twitter/bootstrap/glyphicons-halflings-regular.ttf 404 (Not Found) assets/twitter/bootstrap/glyphicons-halflings-regular.ttf:1
GET http://localhost:3000/assets/twitter/bootstrap/glyphicons-halflings-regular.svg 404 (Not Found) 

我使用 rake assets:precompile RAILS_ENV=production 生成具有结果的静态文件:

I, [2013-11-07T16:52:25.269370 #12948]  INFO -- : Writing myproject/public/assets/application-3517eb39b597107b3dbccbcbf4f0b3cc.js
I, [2013-11-07T16:52:25.315358 #12948]  INFO -- : Writing myproject/public/assets/application-1459bfe79a6477170658d53257e4a8fd.css
I, [2013-11-07T16:52:25.334356 #12948]  INFO -- : Writing myproject/public/assets/twitter/bootstrap/glyphicons-halflings-regular-8b1bdc16b9e098d67afebbf8d59fcea7.eot
I, [2013-11-07T16:52:25.345360 #12948]  INFO -- : Writing myproject/public/assets/twitter/bootstrap/glyphicons-halflings-regular-8d8305e5b6a807076d3ec68e2f190674.svg
I, [2013-11-07T16:52:25.357360 #12948]  INFO -- : Writing myproject/public/assets/twitter/bootstrap/glyphicons-halflings-regular-946071b70245967633bb3a774c60f3a3.ttf
I, [2013-11-07T16:52:25.367360 #12948]  INFO -- : Writing myproject/public/assets/twitter/bootstrap/glyphicons-halflings-regular-d7e2274ad1d940a0b2ce7480810ab223.woff
etc ...

除了这 3 个字体文件外,所有资产都运行良好。我搜索了一整天,没有找到任何东西。似乎 rails 正在寻找没有这 3 个文件散列的版本,但 rake 使用散列生成它们

我的 config/production.rb :

  config.cache_classes = true
  config.eager_load = true
  config.consider_all_requests_local       = false
  config.action_controller.perform_caching = true
  config.serve_static_assets = true
  config.assets.js_compressor = :uglifier
  config.assets.compile = false
  config.assets.digest = true
  config.assets.version = '1.0'
  config.log_level = :info
  config.i18n.fallbacks = true
  config.active_support.deprecation = :notify

编辑

我试图覆盖 @font-face 变量,但它似乎没有删除旧变量:

@font-face {
  font-family: 'Glyphicons Halflings';
  src: asset-url('twitter/bootstrap/glyphicons-halflings-regular.eot',font);
  src: asset-url('twitter/bootstrap/glyphicons-halflings-regular.eot?#iefix',font) format('embedded-opentype'), asset-url('twitter/bootstrap/glyphicons-halflings-regular.woff',font) format('woff'), asset-url('twitter/bootstrap/glyphicons-halflings-regular.ttf',font) format('truetype'), asset-url('twitter/bootstrap/glyphicons-halflings-regular.svg#glyphicons-halflingsregular',font) format('svg');
}

我现在加载了字形图标,但仍然出现 3x 404 错误。

4

4 回答 4

5

好吧。

我切换到https://github.com/thomas-mcdonald/bootstrap-sass。几乎相同的引导程序版本,没有问题。

编辑更新

bootstrap-sass 已更新。如果您仍然有 404 错误,您需要按照 github 页面上的说明进行一些更改。

于 2013-11-08T09:00:54.913 回答
3

我有同样的问题。原来,我不得不@import "bootstrap-sprockets"在除了@import "bootstrap"里面添加application.css.sass

于 2014-07-25T14:40:16.073 回答
2

将 MIME 类型添加到您的网络服务器中。

您必须定义如何提供 woff 文件。

对于 IIS,转到您的 IIS 并打开 MINE 类型窗口

单击添加并为第一个输入框输入“ woff ”,为第二个输入框输入“ application/x-font-woff

然后重复其他扩展

祝你好运

于 2014-05-07T02:00:31.407 回答
1

字体目录不会自动被视为资产目录。您需要通过config.assets.paths << Rails.root.join("app", "assets", "fonts")application.rb文件中设置:显式添加它。

于 2013-11-08T13:46:58.503 回答