在rails 4.0上编辑嵌套资源ruby

时间:2014-06-06 01:03:51

标签: ruby-on-rails ruby resources nested edit

我有一个机会模型,它有一个名为Link的嵌套资源。我想尝试编辑我的链接:

<%= link_to "Edit Link", edit_opportunity_link_path(@opportunity, link)%>

然而,当我点击该链接时,我收到错误:

未定义的方法`link_path'

带错误的代码段是:

<%= form_for(@link) do |f| %> #This line is where the error is highlighted
<% if @link.errors.any? %>
  <div id="error_explanation">
    <h2><%= pluralize(@link.errors.count, "error") %> prohibited this link from being     saved:</h2>

有人可以帮忙吗?谢谢!

0 个答案:

没有答案