rails "No route matches" 错误的解决方法
时间:2022-08-23 10:22:44|栏目:Ruby|点击: 次
有时候 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
"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
栏 目:Ruby
下一篇:没有了
本文标题:rails "No route matches" 错误的解决方法
本文地址:http://www.codeinn.net/misctech/211600.html