gpt4 book ai didi

ruby-on-rails - 如何在 Rails 4 应用程序中启用 CORS

转载 作者:数据小太阳 更新时间:2023-10-29 06:30:03 25 4
gpt4 key购买 nike

我正要把我的头发拉出来...从早上开始我就一直在尝试在此 Rails 应用程序中启用 CORS,但它不起作用。我试过了 this , 使用 Rack Cors Gem , this answer还有这个post都没有成功。

有人能指出我正确的方向吗?

这是我的js:

      var req = new XMLHttpRequest();

if ('withCredentials' in req) {
// req.open('GET', "https://api.github.com/users/mralexgray/repos", true);
req.open('GET', "http://www.postcoder.lc/postcodes/" + value, true);
// Just like regular ol' XHR
req.onreadystatechange = function() {
if (req.readyState === 4) {
if (req.status >= 200 && req.status < 400) {
// JSON.parse(req.responseText) etc.
console.log(req.responseText);
} else {
// Handle error case
}
}
};
req.send();
}

当我尝试这个 url(来自外部客户端)时:https://api.github.com/users/mralexgray/repos没问题,我假设问题出在我的 Rails API 上。我错了吗?

编辑:目前我的 Controller 中有这个:

skip_before_filter :verify_authenticity_token
before_filter :cors_preflight_check
after_filter :cors_set_access_control_headers

# For all responses in this controller, return the CORS access control headers.
def cors_set_access_control_headers
headers['Access-Control-Allow-Origin'] = '*'
headers['Access-Control-Allow-Methods'] = 'POST, GET, OPTIONS'
headers['Access-Control-Max-Age'] = "1728000"
end

# If this is a preflight OPTIONS request, then short-circuit the
# request, return only the necessary headers and return an empty
# text/plain.

def cors_preflight_check
headers['Access-Control-Allow-Origin'] = '*'
headers['Access-Control-Allow-Methods'] = 'POST, GET, OPTIONS'
headers['Access-Control-Allow-Headers'] = 'X-Requested-With, X-Prototype-Version'
headers['Access-Control-Max-Age'] = '1728000'
end

最佳答案

你应该使用 rack cors

它提供了一个很好的 DSL,可以在您的 config/application.rb 中使用,而不是凌乱的 header 工作和过滤器之前。

非常宽容的做法如下,但当然,您必须稍微调整一下。

use Rack::Cors do
allow do
origins '*'
resource '*', headers: :any, methods: :any
end
end

关于ruby-on-rails - 如何在 Rails 4 应用程序中启用 CORS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29751115/

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