สิ่งที่ฉันพยายามบรรลุ
ฉันต้องการเปลี่ยนเป็นสถานะบางสถานะ (เข้าสู่ระบบ) ในกรณีที่คำขอ $ http ส่งกลับข้อผิดพลาด 401 ฉันจึงสร้างตัวดักจับ $ http
ปัญหา
เมื่อฉันพยายามแทรก '$ state' ลงใน interceptor ฉันจะได้รับการพึ่งพาแบบวงกลม ทำไมและฉันจะแก้ไขได้อย่างไร?
รหัส
//Inside Config function
var interceptor = ['$location', '$q', '$state', function($location, $q, $state) {
function success(response) {
return response;
}
function error(response) {
if(response.status === 401) {
$state.transitionTo('public.login');
return $q.reject(response);
}
else {
return $q.reject(response);
}
}
return function(promise) {
return promise.then(success, error);
}
}];
$httpProvider.responseInterceptors.push(interceptor);