ruby-on-rails – 如何在Rails中获取URL参数?

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 如何在Rails中获取URL参数?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
处理POST请求时,params [:id]返回存储在发布表单中的“id”值.

但是我想获取存储在url(查询字符串)中的值.

def some_action
  id = params[:id] # Gets id from here: /some_action?id=[VALUE] only when request.post? is false
  if request.post?
  # Do some stuff,can't get the id value from the url
  ...
end

那么如何从POST请求中获取URL的值?

解决方法

它与GET参数实际相同.为了证明这一点,我有一个搜索表单将一个参数发布到同一个操作:
def invite

    if request.post? 

        search= [params[:search]]
        #...

    end
end

在这个观点 – 也许你的问题来自于此

<% form_tag do %>
        <%= text_field_tag :search,params[:search] %>
        <%= submit_tag "Rechercher" %>
<% end %>
原文链接:https://www.f2er.com/ruby/265941.html

猜你在找的Ruby相关文章