-
Notifications
You must be signed in to change notification settings - Fork 9
Open
Description
`var pluploader = new Pluploader({
uploadLimit: 16,
uploadDir: 'saved/'
});
pluploader.on('fileUploaded', function(file, req) {
console.log(file);
});
pluploader.on('error', function(error) {
throw error;
});
router.post('/upload', function(req, res){
pluploader.handleRequest(req, res)
});`
I've tried with res.send in the router.post function but it won't work.
I want to get the target path to return to client, what can i do?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels