Rails页面不会出现

时间:2016-03-20 22:11:59

标签: ruby-on-rails

我尝试在rails项目上执行ruby。我做了一些命令,包括<form id="form1" action="post">。我写的命令是:

rails server

但是我在rails new first_proj; cd first_proj rails generate scaffold project name:string cost:decimal; bundle exec rake db:migrate rails s 看到没有html页面。我明白了:

enter image description here

你能帮助我吗?

2 个答案:

答案 0 :(得分:2)

您看到的页面是默认的Rails根页面(http://localhost:3000)。所以,你的Rails安装工作正常!

现在,在浏览器的地址栏中输入http://localhost:3000/projects

希望您能看到scaffold命令生成的项目页面。

答案 1 :(得分:0)

安装所有依赖项

 bundle exec install 

然后启动服务器

 bundle exec rails s

然后您应该看到以下内容:

=> Booting WEBrick
=> Rails 4.2.0 application starting in development on http://0.0.0.0:3000
=> Run `rails server -h` for more startup options
=> Notice: server is listening on all interfaces (0.0.0.0). Consider using     127.0.0.1 (--binding option)
=> Ctrl-C to shutdown server
[2014-04-11 13:11:47] INFO  WEBrick 1.3.1
[2014-04-11 13:11:47] INFO  ruby 2.1.1 (2014-02-24) [i686-linux]
[2014-04-11 13:11:47] INFO  WEBrick::HTTPServer#start: pid=6370 port=3000

如果您打开浏览器并输入添加地址“http://localhost:3000”,您应该看到接收请求的日志

Started GET "/" for 127.0.0.1 at 2014-04-11 13:11:48 +0200
...
Processing by ArticlesController#index as HTML