我需要实现以下内容:
def some_function
redirect_to :action=> show ,:id=>current_user.id
end
// this will throw an error that id is nil
def show
@user=User.find(params[:id])
end
我可以尝试做些什么来实现这一点?
我需要实现以下内容:
def some_function
redirect_to :action=> show ,:id=>current_user.id
end
// this will throw an error that id is nil
def show
@user=User.find(params[:id])
end
我可以尝试做些什么来实现这一点?
2条答案
按热度按时间tjjdgumg1#
你应该重定向到一个url,而不是一个action。
brc7rcf02#
更改工艺路线定义
然后使用如下代码: