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
Allows for advanced customization by overriding default behavior in AjaxUplaoder. Provide your own XMLHttpRequest calls to interface with custom backend processes or interact with AWS S3 service through the aws-sdk-js package.
91
+
92
+
customRequest callback is passed an object with:
93
+
94
+
*`onProgress: (event: { percent: number }): void`
95
+
*`onError: (event: Error, body?: Object): void`
96
+
*`onSuccess: (body: Object): void`
97
+
*`data: Object`
98
+
*`filename: String`
99
+
*`file: File`
100
+
*`withCredentials: Boolean`
101
+
*`action: String`
102
+
*`headers: Object`
103
+
104
+
87
105
### methods
88
106
89
107
abort(file?: File) => void: abort the uploading file
0 commit comments