我有以下键的哈希
{:action=>'index', :controller=>'users', :search=>'John'}
我想使用这个哈希键构建一个完整的请求 url。我尝试使用ActionDispatch::Routing::RouteSet
类,但无法按预期获取 url。
我想建立这样的网址http://localhost:3000/users?search=John
如何获取此请求 url?
我有以下键的哈希
{:action=>'index', :controller=>'users', :search=>'John'}
我想使用这个哈希键构建一个完整的请求 url。我尝试使用ActionDispatch::Routing::RouteSet
类,但无法按预期获取 url。
我想建立这样的网址http://localhost:3000/users?search=John
如何获取此请求 url?