我想提出一个凤凰API为我的反应前台和我送与对象的对象的岗位要求,我想,我需要使用选项在API与岗位,让他们beause它只是失败了,但现在的PARAMS是空。 这是为什么?
我送:
axios
.post(PAYMENT_SERVER_URL, {
description,
email: token.email,
source: token.id,
subscriptionID
})
API路由器:
pipeline :api do
plug(:accepts, ["json"])
end
scope "/api", MyApiWeb do
pipe_through(:api)
options("/users", UserController, :create)
end
API UserController的
def create(conn, params) do
IO.puts(options)
end
现在我会很高兴只记录了出来。