How to get a response from the server after each chunk? #510
-
I use ChunkedUploady and hook useItemProgressListener. Server response such json: {done: 7, status: true}, but object that return hook useItemProgressListener hasn't uploadResponse. What could be the problem? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hey @SvistelnykOleksandr, The progress listener doesnt have information related to chunks. Its only getting the overall progress info. For the chunk upload response you should use the useChunkFinishListener hook. It receives an uploadData object with a response property that should contain the server response. import { useChunkFinishListener } from "@rpldy/chunked-uploady";
const MyComponent = () => {
useChunkFinishListener(({ uploadData }) => {
console.log(`response data = `, uploadData.response);
});
}; |
Beta Was this translation helpful? Give feedback.
Hey @SvistelnykOleksandr,
The progress listener doesnt have information related to chunks. Its only getting the overall progress info.
For the chunk upload response you should use the useChunkFinishListener hook.
It receives an uploadData object with a response property that should contain the server response.