Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Rails 新手。通过创建 demo_app 一切都很稳固,但是 rails 服务器只产生基本的 rails 欢迎页面,而不是我的演示应用程序
您需要删除public/index.html并更改root to:以config/routes.rb指向欢迎页面的控制器操作。
public/index.html
root to:
config/routes.rb
好吧,那么 Rails 就可以了 :)
在您的控制台 cd 到您的 rails 应用程序所在的文件夹并运行
rake routes
然后在浏览器中尝试其中一条路线。如果没有,您必须创建路线。为此,请遵循一些教程。