0

以下を使用してerbメソッドを使用する場合:

require 'erb'

def erb(template)
  path = File.expand_path("../views/#{template}", __FILE__)
  ERB.new(File.read(path)).result(binding)
end

その後、以下を使用します。

Rack::Response.new(erb('default.html.erb'))

Errno::ENOENTを発生させます。どうしてこれなの?ありがとう!

4

1 に答える 1

1

ファイルパスが間違っている可能性があります。それが正しいことを確認してください。

于 2012-04-27T02:02:50.347 に答える