Adding Chunk File Upload Support to the library #977

Open
PauloPeres wants to merge 7 commits from PauloPeres/development into development
Showing only changes of commit 4ead005a66 - Show all commits

View File

@@ -94,14 +94,14 @@ Thanks for understanding!
If you want to send the files chunked you can just set the chunk paramets on the uploader object
If your chunk request changes the link after the first request you should use this code
```
```txt
this.uploader.onCompleteChunk = (item,response,status,headers)=>{
response = JSON.parse(response);
if(response['id']){
item.url = YOUR_NEW_URL+response['id']+'/';
}
}
```txt
```
### License