我有一个机会模型,它有一个名为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>
有人可以帮忙吗?谢谢!