ruby-on-rails-3 – 向Rails 3.1资源管道添加自定义方法?

前端之家收集整理的这篇文章主要介绍了ruby-on-rails-3 – 向Rails 3.1资源管道添加自定义方法?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何将自定义方法添加到资源中,例如像Rails那样使用’asset_path’帮助器的CSS文件

有了铁路的帮手,我可以写:

# some.css.erb:

<%= asset_path 'a_image.png' %>

# How can I write this:

<%= my_custom_method 'a_image.png' %>

我尝试了许多方法,但找不到一个体面的方法.你知道吗

谢谢

解决方法

我发现最好的方法是在app / helpers中创建一个自定义助手模块:
module AssetsHelper
  def my_custom_helper_method
    # do something  
  end
end

然后在application.rb中要求这样,在你的应用程序配置(非常底层)之后:

module Sprockets::Helpers::RailsHelper
  require Rails.root.join('app','helpers','assets_helper.rb')
  include AssetsHelper
end

你可能会关注这个问题找到一个更好的方法https://github.com/rails/rails/issues/3282

原文链接:https://www.f2er.com/ruby/265243.html

猜你在找的Ruby相关文章