magicdvd

Results 5 comments of magicdvd

@gpyys @lpp288 Replace the default image handler with your own's ``` modules: { toolbar: { container: '#toolbar', handlers: { 'image': imageHandler } } }, ``` the offical image handler is...

My code use axios. ``` var formData = new FormData(); formData.append("image", fileInput.files[0]); axios.post(UPLOAD_IMAGE_URI, formData, { headers: { 'Content-Type': 'multipart/form-data' }, responseType:'json' }) .then(res => { if(res.data.error == 0){ let range...