应用程序/控制器/app.rb
require 'sinatra'
get '/' do
erb :index
end
应用程序/视图/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
?