gpt4 book ai didi

c# - Angular $http 错误响应 statusText 始终未定义

转载 作者:行者123 更新时间:2023-11-30 13:22:23 26 4
gpt4 key购买 nike

我正在尝试向用户返回一条自定义错误消息,让他们知道发生错误时出了什么问题,但我已经尝试了所有方法来显示该消息,但似乎没有任何东西可以捕捉到它。这是我的 Angular 代码:

$scope.save = function (style) {
styleAPIservice.addStyle(style).success(function () {
$scope.success = "Style added successfully";
}).error(function (data, status, headers, config, statusText) {
$scope.error = "An error occurred while saving style: " + data + "|"+data.data+"|"+data.statusText+"|"+statusText;
});
}

这是它正在调用的 styleAPIservice 函数:

styleAPI.addStyle = function (style) {
return $http.post(AppRoot + "api/StyleAPI/",
JSON.stringify(style),
{
headers: {
'Content-Type': 'application/json'
}
});
}

这是 API 函数:

[HttpPost]
public HttpResponseMessage PostStyle(Style style)
{
if (string.IsNullOrEmpty(style.Pattern.PatternName) || string.IsNullOrEmpty(style.StockNumber))
return Request.CreateErrorResponse(HttpStatusCode.BadRequest, "Pattern Name and Stock Number are required.");

var checkStyle = StyleRepository.LoadStyleByStockNumber(style.StockNumber);
if (checkStyle != null)
return Request.CreateErrorResponse(HttpStatusCode.BadRequest, "Style number already exists. Please use update.");

try
{
// Save style
}
catch (Exception ex)
{
return Request.CreateErrorResponse(HttpStatusCode.BadRequest, "Error creating style: " + ex.Message);
}

HttpResponseMessage response = Request.CreateResponse(HttpStatusCode.Created, style);
response.Headers.Location = new Uri(Url.Link("DefaultApi", new { id = style.StyleId }));
return response;
}

下面是错误发生时(比如Style已经存在)返回的内容:

An error occurred while saving style: [object Object]|undefined|undefined|undefined

我做错了什么?我觉得我已经到处搜索并尝试了所有可能的建议,但我不知道为什么我不能显示我的错误消息。

最佳答案

将 .error() 替换为 .catch()。

$http.post('/url',json)
.success(function(data, status, headers, config){

// some code here

})
.catch(function(data, status, headers, config){ // <--- catch instead error

data.statusText; //contains the error message

});

关于c# - Angular $http 错误响应 statusText 始终未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25081032/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com