我一直收到错误:错误的参数数量(1表示0)
def destroy
@event = Event.find(params(:id))
@event.destroy
flash[:success] = "Event destroyed."
redirect_to events_path
end
我正在尝试销毁@event并且它不起作用,因为@event = Event.find(params(:id))具有错误的参数数量。我做错了什么?
答案 0 :(得分:13)
应该是params[:id]
而不是params(:id)
。