我收到来自HTTP调用的错误消息,在错误块中 异步调用,我必须在视图上显示相同的消息,所以我接受了 范围变量中的消息如下所示:
$scope.errMessage = "error messsage"
在视图中,相同的变量名称用作{{errMessage}}
但我无法看到显示的消息是否有人可以帮助我?
是否有任何关于异步调用以显示结果的事情
成功或错误。
Below is the controller part of the call
ContactService.getUser(searchByNum).then(function(success){
console.log("success"+JSON.stringify(success.data.errCode));
},function(error, status, headers, config){
**$scope.errMessages = error.data.errMessage;**
console.log("error"+JSON.stringify(error.data.errMessage));
})
Below is the service part of the actual http call
this.getUser = function(searchByNum){
return $http({ method: 'GET',
url: 'http://localhost:8083/simpro1/helloRest/user/'+searchByNum});
}