当我在角度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) {});
答案 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/