1. Anforderung zum Ausführen des Fehlers direkt unter ie9
2.$.ajax({
url: apiServiceBaseUri + 'token',
type: "post",
data: data,
dataType: 'json',
success: function (response) {
loginSucc(response);
},
error: function(response) {
var res = JSON.parse(response.responseText);
$(".hint").show().html(res.error_description);
}
});
看看控制台下,请求有没有发送出去呢?以及有什么错误提示呢。url输入的正确否?