gpt4 book ai didi

ruby-on-rails - 在我的 Controller 中,我想接收一些参数,例如 params[ :test][:test_page]

转载 作者:行者123 更新时间:2023-12-02 00:22:17 24 4
gpt4 key购买 nike

在我的 Controller 中,我想接收一些参数,例如

params[:test][:test_page]

此代码在编辑页面中,如

<%= test.title%>

我不能在集合或任何其他字段中给出这个,因为我不允许用户编辑它显示类似固定的内容

所以我怎样才能将它传递给 Controller ​​我对一个代码有一个大概的了解所以把它作为引用

<%= collection_select(:test,:test_page, @testplantemplates, :id, :title,:selected => @test_plan_template_id) %>

我们如何做到这一点?我正在尝试 hidden_​​field 但它只允许 2 个参数。你能给我一些例子或想法吗?

我的一些代码是

<% if @secu.test_plan  %>
<%= @secu.test_plan.title %>
<% else %>
<%= collection_select(:test_plan,:test_plan_template_id, @testplantemplates, :id, :title, :prompt => true, :selected => @test_plan_template_id) %>
<% end %>

最佳答案

您可以使用隐藏字段。像这样:

<%= hidden_field_tag "test[test_page]", @test_plan_template_id %>

关于ruby-on-rails - 在我的 Controller 中,我想接收一些参数,例如 params[ :test][:test_page],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10382203/

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