请帮助。
我使用rack_cors gem但未解决我的问题
这是我的代码
application.rb中
config.middleware.insert_before 0, Rack::Cors do
allow do
origins 'localhost', 'http://example.com'
resource '*', :headers => :any, :methods => [:get, :post, :options]
end
end
这是错误
XMLHttpRequest无法加载https://example.com/video.vtt。请求的资源上不存在“Access-Control-Allow-Origin”标头。因此,不允许原点“http://localhost:3000”访问。