Every line of 'axios get then' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.
12 public get(url: string, params: AxiosRequestConfig): AxiosPromise { 13 return this.http.get(url, params); 14 }
21 static getFetcher() { 22 return axios.create(config); 23 }
24 function _axiosPost() { 25 var args = []; 26 for (var _i = 0; _i < arguments.length; _i++) { 27 args[_i] = arguments[_i]; 28 } 29 return new Promise(function (resolve, reject) { 30 jsHelper.apply(exports.axios.post, exports.axios, args) 31 .then(function (response) { 32 resolve(response); 33 }) 34 .catch(function (err) { 35 reject(err); 36 }); 37 }); 38 }
26 get(endpoint, params = {}) { 27 return axios 28 .get(endpoint, { 29 params: params, 30 headers: { 31 Authorization: this.token 32 } 33 }) 34 .catch(apiError); 35 }
75 delete(url, options) { 76 return this._axios.delete(url, options) 77 }
32 get(url, headers = {}, params = {}) { 33 return axios.get(this.getApiUrl(url), { 34 headers, 35 params, 36 }); 37 }
44 export function request(config: RequestConfig) { 45 config.baseURL = `//${process.env.RIDI_PAY_API_SERVER_HOST}`; 46 config.withCredentials = true; 47 config.headers = { 48 ...config.headers, 49 'Content-Type': 'application/json' 50 }; 51 // Workaround to set Content-Type: https://github.com/axios/axios/issues/86 52 config.data = config.data || {}; 53 return axios(config); 54 }
81 customGet(endpoint, headers) { 82 return axios({ 83 method: 'post', 84 url: this.baseUrl + endpoint, 85 headers: headers ? headers : this.getHeaders 86 }) 87 }
3 static http(url){ 4 return axios.get(url).then(data => { 5 if(data.status === 200){ 6 return data.data 7 } 8 }).then(data => { 9 if(data && typeof data ==="object"){ 10 let errorCodeArray =["EX-100000","EX-100001","EX-100002","EX-100003","EX-100004","EX-100005","EX-100006","EX-100007","EX-100008"]; 11 if(data.code &&errorCodeArray.some((item)=> { 12 return item === data.code 13 })){ 14 return null 15 }else { 16 return data 17 } 18 }else { 19 return null; 20 } 21 }); 22 }
41 get(url, options) { 42 const requestOptions = { 43 ...this.defaultOptions, 44 ...options, 45 method: 'GET', 46 }; 47 48 return request(url, requestOptions) 49 .then(this.interceptRequestResponse) 50 .catch(this.interceptRequestError); 51 }