运行ruby应用程序时变为空白

时间:2014-04-28 06:27:43

标签: ruby-on-rails ruby ruby-on-rails-4

我正在使用Ruby 2和Rails 4.我在运行我的应用程序时得到空白页面输出,并且它在命令行中也没有显示任何错误。如果有人对此有任何疑问,请与我分享。谢谢。

Blank page and no error

1 个答案:

答案 0 :(得分:1)

从您的日志中,它显示您的服务器正在加载/home - 它们路由到static_pages/home。这意味着您的rails应用会响应您的请求,可能意味着问题出在static_pages controllerhome view

您至少应该拥有此代码:

#app/controllers/static_pages_controller.rb
Class StaticPages < ApplicationController
  def home
  end
end

#app/views/static_pages/home.html.erb
Hello World!

如果您使用控制器进行更新,请查看&amp;呈现HTML代码 - 这将非常有用!