Custom Code - Page is in React Js
Can you please let me know in which language custom code should be developed if page is in React js.
Harpreet
Can you please let me know in which language custom code should be developed if page is in React js.
Harpreet
Hi Harpreet,
I am also working in React pages. Currently I am using Plain Javascript to implement the test variants. In Angular 1.x version we can create a functionality using Angular. The below code for extending the interceptor. But in React we does not have the way to write custom code.
angular.module('appModule').config(function ($httpProvider, $provide) {
$provide.factory('httpInterceptor', function ($q, $rootScope) {
return {
'request': function (config) {
$rootScope.$broadcast('httpRequest', config);
return config || $q.when(config);
},
'response': function (response) {
$rootScope.$broadcast('httpResponse', response);
return response || $q.when(response);
},
'requestError': function (rejection) {
$rootScope.$broadcast('httpRequestError', rejection);
return $q.reject(rejection);
},
'responseError': function (rejection) {
$rootScope.$broadcast('httpResponseError', rejection);
return $q.reject(rejection);
}
};
});
$httpProvider.interceptors.push('httpInterceptor');
});
Thanks,
Hariharan S
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.