【发布时间】:2023-03-24 07:50:01
【问题描述】:
app/controllers/app.rb
require 'sinatra'
get '/' do
erb :index
end
app/views/index.erb
<html>
<body>
<p>Hello World</p>
</body>
</html>
错误:
Errno::ENOENT at /
No such file or directory - .../app/controllers/views/index.erb
如何配置 erb 以查看 app/views 而不是 app/controllers/views?
【问题讨论】: