包含在ERB for Rails中

rct*_*eil 2 svg ruby-on-rails erb include

我正在尝试遵循本指南:http: //css-tricks.com/svg-sprites-use-better-icon-fonts

克里斯声称在打开身体标签后注射svg.在PHP中这很简单,但我使用Rails,所以有一个.html.erb文件.

如何使用此文件包含文件?我已经尝试过资产助手,评估,渲染.似乎什么都没有用?

Phi*_*lip 6

这属于Ruby Racer.

inline_svg_helper.rb

def inline_svg(path)
    File.open("app/assets/images/#{path}", "rb") do |file|
    raw file.read
  end
end
Run Code Online (Sandbox Code Playgroud)