我正在使用Rails 4.0.10。我有一个模型的show
和edit
视图。 show
网址仅为model/id
,edit
网址为model/id/edit
。我无法弄清楚如何在show
页面上创建重定向到edit
页面的链接。
这是我到目前为止所尝试的内容:
<%= link_to "edit", model_edit_path(model) %>
答案 0 :(得分:0)
正确的方法是(交换模型和编辑):
<%= link_to 'Edit', edit_model_path(model) %>
答案 1 :(得分:0)
RESTful默认路由如下:
#index => models_path
#new => new_model_path
#edit => edit_model_path(:id)
#show => model_path(:id)
如果您想查看所有可用路线,请在控制台中使用rake routes