本文介绍了如何在 Rack::MockRequest 中指定协议是 https?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在使用 Rack::MockRequest 发出请求时将协议设置为 https

I want to set the protocol to https when making a request with Rack::MockRequest

client = Rack::MockRequest.new(@app)

#something like this?
env = @app.env.merge("rack.url_scheme" => "https")
response = client.get("/", env)

我该怎么做?

这里是 Rack 文档.

推荐答案

response = client.get("/", "rack.url_scheme" => "https")

应该可以

这篇关于如何在 Rack::MockRequest 中指定协议是 https?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-24 05:35