Saturday 8 April 2017

How can i get uploaded file link in FineUploader

I used node js server for uploading files to s3 bucket. So succeed in uploading files to s3 bucket. But now i can't get uploaded file link. I tried in fine uploader option as follows:

 callbacks: {
                onComplete: function(id, name, response) {
                    console.log('res='+JSON.stringify(response));

                    if(response.success){
                     console.log(response.tempLink);
                    }
                }
            } 

but i got response.templink=undefined. I think node js server is not providing this value( templink ) . So i want to know solution way about this. Do u have modified node js code or other way? Thanks.



via Alvin Tan

No comments:

Post a Comment