我正在努力让 gem “rack-cors” 在本地工作。我使用 gem 'devise_token_auth' 和 angular 7 客户端设置了裸轨,使用 'angular-token' 进行身份验证。但是来自 Angular 的每个请求都会引发 cors 错误。我已经按照文档配置了 rails 和“rack-cors”,但它不起作用。这是我的配置application.rb
config.middleware.insert_before 0, Rack::Cors do
allow do
origins '*'
resource '*',
headers: :any,
expose: ['access-token', 'expiry', 'token-type', 'uid', 'client'],
methods: [:get, :post, :options, :delete, :put]
end
end
rails middleware
如果我使用,列出中间件,Rack::Cors
则在后面列出,use Webpacker::DevServerProxy
但每个请求都会引发以下错误。
Processing by DeviseTokenAuth::SessionsController#create as HTML
Parameters: {"session"=>{}}
HTTP Origin header (http://localhost:4200) didn't match request.base_url (http://localhost:3000)
Completed 422 Unprocessable Entity in 1ms (ActiveRecord: 0.0ms)
ActionController::InvalidAuthenticityToken (ActionController::InvalidAuthenticityToken):