You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 16, 2021. It is now read-only.
I am working on an app which is transpiled to es5 and there is something that I don't understand (sorry in advance if my question is stupid).
I created my own interceptor and I added to the the interceptor service :
export class TimeoutInterceptor implements Interceptor {
private _timeout: number = 1;
public interceptBefore(request: InterceptedRequest): Observable<InterceptedRequest> {
return Observable.of<InterceptedRequest>(request)
.timeout(this._timeout);
}
public interceptAfter(response: InterceptedResponse): InterceptedResponse {
return response;
}
}
But in the interceptor-service.js file at the line 176 there is a test if (!bf.interceptBefore)
and it returns undefined.
When I debug I see my interceptor in the list and I see in the prototype of it the correct function. If I debug bf.prototype.interceptBefore the function exists :
@jogelin I had the same issue and fixed it by creating a new instance or the interceptor class to pass to the InterceptorService.addInterceptor() method.
exportfunctioninterceptorFactory(xhrBackend: XHRBackend,requestOptions: RequestOptions){constservice=newInterceptorService(xhrBackend,requestOptions);service.addInterceptor(newServerURLInterceptor());// create new instance of ServerURLInterceptor servicereturnservice;}
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I am working on an app which is transpiled to es5 and there is something that I don't understand (sorry in advance if my question is stupid).
I created my own interceptor and I added to the the interceptor service :
But in the interceptor-service.js file at the line 176 there is a test
if (!bf.interceptBefore)
and it returns undefined.
When I debug I see my interceptor in the list and I see in the prototype of it the correct function. If I debug
bf.prototype.interceptBefore
the function exists :Thank you in advance
The text was updated successfully, but these errors were encountered: