$http({
method: 'POST',
data: {test: 'test'}
url: '/someUrl'
}).then(function(response) {
// this callback will be called asynchronously
// when the response is available
}, function(response) {
// called asynchronously if an error occurs
// or server returns response with an error status.
});
angular $http用法(.success, .error什麼情況?)
是不是後台沒針對AJAX請求結果,做出對應的回傳結果,前台就沒有接收到狀態值
估計類似fetch API設計,400屬於正常code回傳 可以是執行resolve
以上摘自維基百科
4** 是關於前端的錯誤,你應該查看一下發送的參數、及類型是否和後端介面定義的匹配,仔細看看發送請求的那一部分