1.在ie9下面請求直接執行error
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);
}
});