vue-resource为我提供了两个回调:
{
this.$http.get("/my-api").then(
response => {
// success callback
},
response => {
// error callback
}
);
}
但是,我仍然不知道当vue-resource收到状态码403
时将执行哪个回调。
如果我成功使用了API,但是API响应了我403
,那是否考虑到错误回调?
将执行的回调是错误回调。
但是API响应我403,是否考虑到错误回调?
答案:是,403状态被认为是错误。因为您没有访问资源的权限。