我试图通过在其他地方进行API调用来访问这些端点,我如何允许CORS ?我在localhost:4001上运行此程序,并从localhost:3000 (react)进行API调用。提前感谢。如果您需要任何额外的信息(或文件),请随时问我。
defmodule Api.Endpoint do
@moduledoc """
A plug that parses requests as JSON,
dispatches responses and
makes necessary changes elsewhere.
"""
use Plug.Router
plug Plug.Logger
plug :match
# Using Poison for JSON decoding
plug(Plug.Parsers, parsers: [:json], json_decoder: Poison)
plug :dispatch
get "/ping" do
send_resp(conn, 200, Poison.encode!(%{response: "pong!"}))
end
post "/events" do
{status, body} =
case conn.body_params do
%{"events" => events} -> {200, process_events(events)}
_ -> {422, missing_events()}
end
send_resp(conn, status, body)
end
defp process_events(events) when is_list(events) do
Poison.encode!(%{response: "Received Events!"})
end
defp process_events(_) do
Poison.encode!(%{response: "Please Send Some Events!"})
end
defp missing_events do
Poison.encode!(%{error: "Expected Payload: { 'events': [...] }"})
end
match _ do
send_resp(conn, 404, "oops... Nothing here :(")
end
end
基于你的代码像这样使用科西嘉作为@WeezHard说
defmodule Api.CORS do
use Corsica.Router,
origins: ["http://localhost:3000"],
allow_credentials: true,
max_age: 600
resource "/public/*", origins: "*"
resource "/*"
end
然后在端点
defmodule Api.Endpoint do
@moduledoc """
A plug that parses requests as JSON,
dispatches responses and
makes necessary changes elsewhere.
"""
use Plug.Router
plug Plug.Logger
plug Api.CORS
...
end