我想向视图控制器传递一个参数,它可以在触发成功的创建事件后使用。现在在创建事件结束时,我有以下内容:
respond_to do |format|
if @link.save
format.html { redirect_to @link, :notice => 'Link was successfully created.', :first => 'true' }
else
format.html { render action: "new" }
end
end
我试图在第 3 行向下传递一个“第一个”参数,但我要么在视图页面上没有正确调用它,要么在这里没有正确设置它。下面是我用来尝试在视图页面上调用它的代码:
params[:first]