Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Roda,我需要从 http 请求中获取客户端的 IP 地址。在 Sinatra 中,我认为这将是:
request.ip
Roda 中是否有等效的方法?
那个确切的代码应该在 Roda 中工作。Roda 的文档中没有明确提及,但 Roda::RodaRequest 是 Rack::Request 的子类,Rack::Request#ip 返回客户端的 IP。