class AsistenciaController < ApplicationController
def asistencia
@username = params[:user_username]
@entry = params[:user_entry]
if @asistencia.update(asistencia_params)
redirect_to asistencia_path, notice: "Asistencia Guardada"
else
render :edit, status: :unprocessable_entity
end
end
end
undefined local variable or method `asistencia_params' for #<AsistenciaController:0x00000000083450>
我期望能够使用名称更新条目
我想强调的是,在其他控制器中,所有的用户名和条目都已经定义好了。
1条答案
按热度按时间vql8enpb1#
你必须在你的控制器中像这样定义asistencia_params方法。