mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-25 03:08:34 +00:00
docs: Sort uploader plugins, add xhrupload stub.
This commit is contained in:
parent
ac1a51a11d
commit
d1bd8b6183
4 changed files with 24 additions and 3 deletions
|
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
type: docs
|
||||
order: 10
|
||||
order: 11
|
||||
title: "AwsS3"
|
||||
permalink: docs/aws-s3/
|
||||
---
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
type: docs
|
||||
order: 9
|
||||
order: 10
|
||||
title: "Transloadit"
|
||||
permalink: docs/transloadit/
|
||||
---
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
---
|
||||
order: 7
|
||||
type: docs
|
||||
order: 8
|
||||
title: "Tus"
|
||||
permalink: docs/tus/
|
||||
---
|
||||
|
|
|
|||
20
website/src/docs/xhrupload.md
Normal file
20
website/src/docs/xhrupload.md
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
---
|
||||
type: docs
|
||||
order: 8
|
||||
title: "XHRUpload"
|
||||
permalink: docs/xhrupload/
|
||||
---
|
||||
|
||||
The XHRUpload plugin handles classic HTML multipart form uploads, as well as uploads using the HTTP `PUT` method.
|
||||
|
||||
## Options
|
||||
|
||||
```js
|
||||
uppy.use(Tus10, {
|
||||
resume: true,
|
||||
allowPause: true,
|
||||
autoRetry: true,
|
||||
retryDelays: [0, 1000, 3000, 5000]
|
||||
})
|
||||
```
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue