"Posts#show_fail" 在 posts_controller.rb 中: def c-6ren">
gpt4 book ai didi

ruby-on-rails - 在 redirect_to 中传递变量

转载 作者:数据小太阳 更新时间:2023-10-29 07:56:46 26 4
gpt4 key购买 nike

在我的 Rails 应用程序中,在 routes.rb 我有

match "show_fail" => "Posts#show_fail"

posts_controller.rb 中:

def create
...
return redirect_to show_fail_path, :title => @post.title
end

def show_fail
end

show_fail.html.erb中:

Unsuccessful posting of post title <%= title %>

但是我得到了一个错误undefined local variable or method 'title'。为什么它不知道 title 变量,我该如何修复它?

最佳答案

redirect_to show_fail_path(:title => @post.title)

从params[:title]中获取

关于ruby-on-rails - 在 redirect_to 中传递变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12978295/

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