AngularJS Web API - IE不发布表单正文

时间:2015-05-28 11:51:53

标签: javascript angularjs oauth-2.0 asp.net-web-api internet-explorer-11

当我在角度JS(使用IE 11)中执行 http post 时,OAuthValidateClientAuthenticationContext表单正文不包含ValidateClientAuthentication处的任何数据。

请注意,这适用于Chrome和Firefox。如果我打开调试器并切换到 IE 9 ,它可以工作但是当我关闭调试器时,它会切换到 IE 11 并停止工作。

任何想法都赞赏!

//sample code    
var data = "grant_type=password&username=john&password=mYpass10&client_id=self"

this.$http.post('/token', 
    data, { headers: { 'Content-Type': 'application/x-www-form-urlencoded' } })
    .success(function(response: any) {})
    .error(function(err, status) {});

1 个答案:

答案 0 :(得分:1)

将以下内容添加到您的网页会解决问题吗?

<meta http-equiv="x-ua-compatible" content="IE=9" >

这显然是微软正在研究的一个错误。查看更多信息:

http://blog.yorkxin.org/posts/2014/02/06/ajax-with-formdata-is-broken-on-ie10-ie11/

Why is IE 10 Refusing to send POST data via jQuery $.ajax