gpt4 book ai didi

ruby-on-rails - 如何在字段中保留搜索词

转载 作者:行者123 更新时间:2023-12-04 05:45:05 25 4
gpt4 key购买 nike

我在 rails 上使用 ruby​​ 并有一个搜索表单,如:

 <%= form_tag '/findBlood' do %>
Blood Group <%= text_field_tag "bloodGroup" %>
<%= submit_tag "Search", class: "btn btn-large btn-primary"%>
<% end %>

然而,这按预期工作,提交血组字段清除,结果可能分页中断。如何保留这个字段?

最佳答案

这应该对你有用

<%= text_field_tag 'bloodGroup', params[:bloodGroup] %>

请参阅 text_field_tag 的文档

符号有效而字符串(其他答案)无效的原因:
foo = {hello: 'world'}
puts foo[:hello]; # => 'world'
puts foo['hello'] # => nil
puts foo['hello'.to_sym] # => 'world'

您可以在 Ruby 中轻松地在字符串和符号之间进行转换,但它们并不相等。

关于ruby-on-rails - 如何在字段中保留搜索词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11833347/

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