gpt4 book ai didi

ruby-on-rails - 保留 url 参数

转载 作者:数据小太阳 更新时间:2023-10-29 08:57:50 24 4
gpt4 key购买 nike

我正在提取以下参数:

<%= link_to "Sign up", new_store_registration_path(:plan_id => plan.id, :price => plan.price) %>

注册后我已经设置重定向到 new_transaction_path

def after_sign_up_path_for(resource)
new_transaction_path(resource)
end

但是当重定向到新路径时,参数不会出现。我如何在 new_transaction_path url 上显示这两个参数??

最佳答案

我还没有测试过,但也许这行得通:

在你的 Controller 中

def new 
session[:registration_params] = request.query_parameters
end

在你的重定向方法中

def after_sign_up_path_for(resource)
new_transaction_path(resource, session[:registration_params])
end

关于ruby-on-rails - 保留 url 参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45008427/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com