我在 AngularJS 应用程序中有一个简单的 CORS AJAX 调用,并带有成功回调:
$http({method:'POST',url:"http://0.0.0.0:4567/authenticate",
params: {Lusername:scope.Lusername,Lpassword:scope.Lpassword}})
.success(function(){alert("Success")})
在 Safari 中使用时,它工作正常:返回预期的 JSON 对象并显示警告框。但是在 Firefox 中,虽然正确返回了 JSON 对象,但不会触发成功回调。
知道为什么吗?