這是控制器首先動作:傳遞PARAMS使用重定向到不同的動作控制器
def investor_following
@investor = params[:user][:investor_id]
# blah
end
def change_amount
investor = "xyz"
redirect to :action => :investor_following, :user[:investor_id] => investor
end
我得到的錯誤,我如何可以重定向到動作投資者以下,這將是做使用參數正確的語法。
':用戶[:investor_id]'是不正確的語法。 – Max
YEah我知道你能告訴我什麼是正確的語法,我試過有點沒有成功。 –