我有两个表:客户端和客户端信息。我在客户端显示页面上显示客户端信息。现在我想在我的客户端显示页面中删除特定的客户端信息。我有:
<%= link_to "Delete", [ @client.id, @client.client_info ],
:confirm => 'Are you sure?',
:method => :delete,
:class => "btn"
%>
在我的控制器中我正在做:
def destroy
@contact_info = ClientInfo.find(params[:id])
@contact_info.destroy
respond_to do |format|
format.html { redirect_to @client }
format.json { head :ok }
end
我收到一个错误,说明未定义的方法。