如何将自定义方法添加到资源中,例如像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