我的回答来自我的REST - 结果=< 400 Bad Request>
我希望使用angularJS为用户显示此错误。
我在控制器中有功能
$scope.update = function (id) {
Topic.get({id: id}, function (result) {
$scope.name = result;
$('#saveTopicModal').modal('show');
console.log(result);
});
};
请帮忙 - 如何在某个变量中获取错误然后显示此变量。 谢谢
答案 0 :(得分:0)
要获取对错误的访问权限,您必须在angular $ resource API的描述中定义错误处理程序。
$scope.error = error;
$scope.update = function (id) {
Topic.get({id: id}, function (result) {
$scope.name = result;
$('#saveTopicModal').modal('show');
console.log(result);
}, function (error) {
console.log(error);
$scope.error = error;
});
};