0

任何人都知道如何采用教程中提到的很棒的方法并使用绝对 URL生成样式表标签吗?

4

1 回答 1

0

弄清楚了。

在 application_helper.rb 的内容中:

def get_stylesheets
  stylesheets = [] unless stylesheets
  ["http://www.example.com/stylesheets/#{controller.controller_path}/#{controller.action_name}"].each do |ss|
    stylesheets << ss if File.exists? "#{Dir.pwd}/public/stylesheets/#{ss}.css"
  end
end

像宣传的那样工作。好的!

多年来我一直想这样做 - 现在感谢 Rails,我可以!呜呼!

于 2008-11-20T21:54:08.373 回答