当 vue-resource 收到状态码 403 时会执行哪个回调?
Which callback will be executed when vue-resource recieved status code 403?
vue-resource 为我提供了两个回调:
{
this.$http.get("/my-api").then(
response => {
// success callback
},
response => {
// error callback
}
);
}
但是,我仍然不知道当vue-resource收到状态码时会执行哪个回调403
。
如果我成功命中了API,但是API回复了我403
,是否考虑错误回调?
将执行的回调是错误回调。
but API response me 403, is that consider an error callback?
答:是的,403状态被认为是错误的。因为您没有访问该资源的权限。
vue-resource 为我提供了两个回调:
{
this.$http.get("/my-api").then(
response => {
// success callback
},
response => {
// error callback
}
);
}
但是,我仍然不知道当vue-resource收到状态码时会执行哪个回调403
。
如果我成功命中了API,但是API回复了我403
,是否考虑错误回调?
将执行的回调是错误回调。
but API response me 403, is that consider an error callback?
答:是的,403状态被认为是错误的。因为您没有访问该资源的权限。