一切都在FireFox& IE,但使用Chrome,我的初始登录请求是有时候有空的。
以下是AngularJS服务的电话:
$ http.post(http:// localhost:55483 / token,data,{headers:{‘Content-Type’:’application / x-www-form-urlencoded’}})。success(function(response) ..});
预检要求被“允许访问控制原点”错误地踢回来。
但是,如果我再次单击登录按钮(从而重新发送上述请求)一切正常。
任何想法如何防止/陷阱/处理这个?
PS:我使用LOC
context.OwinContext.Response.Headers.Add("Access-Control-Allow-Origin",new[] { "*" });
在ApplicationOAuthProvider.cs文件中将CORS allow-header放在/ Token请求上,这在IE,FireFox以及有时在Chrome中可以正常工作。
Figured this out with help from post by LeftyX on Jun 29:
– Move
this LOCapp.UseCors(Microsoft.Owin.Cors.CorsOptions.AllowAll);
to the
FIRST LINE in the ConfigureAuth method of Startup.Auth.cs.
– Then,
REMOVE this LOC
context.OwinContext.Response.Headers.Add("Access-Control-Allow-Origin",
from the GrantResourceOwnerCredentials() method of
new[] { "*" });
ApplicationOAuthProvide.cs.Preflight CORS-request them gets
handled properly,and then the actual requet goes through
谢谢你,救了我整整一天。
因为它发生在许多人身上,我把你的评论给其他人可以看到的答案框。
我不想为此投票。请评论我的答案
谢谢