Every line of 'axios put' 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.
22 put(url: string, body: object | string | FormData, opts: object): AxiosPromise { 23 return axios.put(url, body, opts); 24 }
48 static put>( 49 url: string, 50 // tslint:disable-next-line:no-any 51 data?: any, 52 config?: AxiosRequestConfig, 53 ): Promise { 54 return axios.put(url, data, config); 55 }
58 put(url: string, body: string, options?: RequestOptionsArgs): Observable { 59 return this.intercept(super.put(this.addNoCacheToUrl(url), body, this.getRequestOptionArgs(options))); 60 }
49 export function put(url, payload): Promise { 50 const default_data = { query: {}, params: {}, loading: null }; 51 const data = Object.assign({}, default_data, payload); 52 const { query, params, loading } = data; 53 const finalUrl = finalPath(url, params); 54 return request(finalUrl, { 55 method: 'PUT', 56 body: JSON.stringify(query), 57 loading 58 }); 59 }
39 put(url, data = {}, headers = {}) { 40 return axios.put(this.getApiUrl(url), data, { 41 headers, 42 }); 43 }
199 async put(url, body, options) { 200 return this.request('put', url, options, body); 201 }
14 export function Put(url: string, appendQuery = false): MethodDecorator { 15 return methodDecoratorFactory('PUT', url, true, appendQuery); 16 }
26 put(url, optionalBody, optionalHeaders) { 27 let body = optionalBody; 28 let headers = optionalHeaders; 29 30 if (!body) { 31 body = {}; 32 } 33 34 if (!optionalHeaders) { 35 headers = {}; 36 } 37 38 return fetch(url, { 39 method: 'PUT', 40 body: JSON.stringify(body), 41 compress: true, 42 headers 43 }); 44 }
35 put(url, data, config = {}) { 36 return this.request('PUT', url, data, config) 37 }
29 put: function put(url, data, headers) { 30 var req = { 31 url: url, 32 data: data, 33 method: 'PUT', 34 headers: headers || {} 35 }; 36 return $http(req).then(_handleResponseData); 37 },