欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

rails "No route matches" 错误的解决方法

程序员文章站 2024-01-07 10:48:16
有时候 rails 会出现: "no route matches"错误, 可以利用如下方法解决; 找到 config/routes.rb 文件, 打开编辑, 找到如下行:...
有时候 rails 会出现:
"no route matches"错误,
可以利用如下方法解决;
找到 config/routes.rb 文件, 打开编辑, 找到如下行:
# see how all your routes lay out with "rake routes"
在这行下面添加一行, 内容如下:
map.connect '',:controller=>"index",:action=>"index"

解决no such file to load — mysql
复制代码 代码如下:

> rails -d mysql myapp